summaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-06-08 19:50:45 +0300
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-06-08 19:50:45 +0300
commita9dd7db178d806a94e76468107a72633ef4a24b3 (patch)
tree012f2412b7a532da62c0562064ef121733e64847 /.bashrc
parent32eccb48e2e1a756a900c26bfa15fff6f9db6b75 (diff)
downloaddotfiles-a9dd7db178d806a94e76468107a72633ef4a24b3.tar
dotfiles-a9dd7db178d806a94e76468107a72633ef4a24b3.tar.gz
dotfiles-a9dd7db178d806a94e76468107a72633ef4a24b3.zip
Added some more config files
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc27
1 files changed, 27 insertions, 0 deletions
diff --git a/.bashrc b/.bashrc
new file mode 100644
index 0000000..ad4581e
--- /dev/null
+++ b/.bashrc
@@ -0,0 +1,27 @@
+# .bashrc
+
+# Source global definitions
+if [ -f /etc/bashrc ]; then
+ . /etc/bashrc
+fi
+
+# User specific environment
+if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
+then
+ PATH="$HOME/.local/bin:$HOME/bin:$PATH"
+fi
+export PATH
+
+# Uncomment the following line if you don't like systemctl's auto-paging feature:
+# export SYSTEMD_PAGER=
+
+# User specific aliases and functions
+if [ -d ~/.bashrc.d ]; then
+ for rc in ~/.bashrc.d/*; do
+ if [ -f "$rc" ]; then
+ . "$rc"
+ fi
+ done
+fi
+
+unset rc