diff options
| 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 |
| commit | a9dd7db178d806a94e76468107a72633ef4a24b3 (patch) | |
| tree | 012f2412b7a532da62c0562064ef121733e64847 /.bashrc | |
| parent | 32eccb48e2e1a756a900c26bfa15fff6f9db6b75 (diff) | |
| download | dotfiles-a9dd7db178d806a94e76468107a72633ef4a24b3.tar dotfiles-a9dd7db178d806a94e76468107a72633ef4a24b3.tar.gz dotfiles-a9dd7db178d806a94e76468107a72633ef4a24b3.zip | |
Added some more config files
Diffstat (limited to '.bashrc')
| -rw-r--r-- | .bashrc | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -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 |
