From 8f0048fde624e304203552d5ebef92ca6f30d618 Mon Sep 17 00:00:00 2001 From: Naz Date: Fri, 5 Sep 2025 22:39:18 +0100 Subject: =?UTF-8?q?=E2=9C=A8feat:=20add=20shells=20configuration=20files.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shells/.config/bash/bashrc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 shells/.config/bash/bashrc (limited to 'shells/.config/bash') diff --git a/shells/.config/bash/bashrc b/shells/.config/bash/bashrc new file mode 100644 index 0000000..a38ac14 --- /dev/null +++ b/shells/.config/bash/bashrc @@ -0,0 +1,18 @@ +# Common configs +source $HOME/.config/shells/shellsrc + +# Completion +[[ $PS1 && -f /usr/share/bash-completion/bash_completion ]] && \ + . /usr/share/bash-completion/bash_completion + +# Vi mode +set -o vi + +# Eval Zoxide +eval "$(zoxide init bash)" + +# Eval FZF +eval "$(fzf --bash)" + +# Prompt +PS1='\[\e[91;1m\][\[\e[93m\]\u\[\e[92m\]@\[\e[94m\]\h \[\e[0;95m\]\W\[\e[91;1m\]]\[\e[0m\]\\$ ' -- cgit v1.2.3