diff options
| Commit | a9dd7db178d806a94e76468107a72633ef4a24b3 (patch ) | |
|---|---|---|
| Author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-06-08 19:50:45 +0300 |
| Committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-06-08 19:50:45 +0300 |
| Files | 012f2412b7a532da62c0562064ef121733e64847 /.bashrc | |
| dotfiles-a9dd7db178d806a94e76468107a72633ef4a24b3.tar dotfiles-a9dd7db178d806a94e76468107a72633ef4a24b3.tar.gz dotfiles-a9dd7db178d806a94e76468107a72633ef4a24b3.zip | ||
| Parent | 32eccb48e2e1a756a900c26bfa15fff6f9db6b75 (diff) | |
Added some more config files
1 files changed, 27 insertions, 0 deletions
| -rw-r--r-- | .bashrc | 27 |
@@ -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 |
