diff options
author | Thanos Apollo <[email protected]> | 2023-10-09 18:42:06 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-10-09 18:42:16 +0300 |
commit | e34cc83796b96c0261d3011770d0d213b5e98a97 (patch) | |
tree | 5bb407d73432b141cf1fbf8a207a542e9cb1e42d /.bashrc | |
parent | 7b8d9c16064d9d84e55286b8a33bdc3fa06cff6c (diff) |
shells: Add bashrc
Zsh is more extensible, but syntax highlighting scripts etc do not
play nice with ssh, plus bashrc configuration is only 8 lines long.
Diffstat (limited to '.bashrc')
-rw-r--r-- | .bashrc | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +eval "$(starship init bash)" + +source ~/.shells/alias.sh +source ~/.shells/exports.sh +export PATH=/home/$USER/.local/bin:$PATH + +if [[ -r /usr/share/bash-completion/bash_completion ]]; then + . /usr/share/bash-completion/bash_completion +fi |