From e34cc83796b96c0261d3011770d0d213b5e98a97 Mon Sep 17 00:00:00 2001 From: Thanos Apollo Date: Mon, 9 Oct 2023 18:42:06 +0300 Subject: 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. --- .bashrc | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .bashrc diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..2731751 --- /dev/null +++ b/.bashrc @@ -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 -- cgit v1.2.3