From 0e171319e5042a7a1c0919edae50330e685202a3 Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Sun, 17 Jul 2022 17:51:58 -0400 Subject: [PATCH] Add .bashrc --- home/.bashrc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 home/.bashrc diff --git a/home/.bashrc b/home/.bashrc new file mode 100644 index 0000000..beb11f2 --- /dev/null +++ b/home/.bashrc @@ -0,0 +1,16 @@ +# ~/.bashrc: executed by bash(1) for non-login shells. + +# If not running interactively, don't do anything +case $- in + *i*) ;; + *) return;; +esac + +bind 'set show-all-if-ambiguous on' +bind 'TAB:menu-complete' +shopt -s histappend + +#export PS1='\n\u@\h \w\n\$ ' +export PS1='\n\[\033[01;32m\]\u@\h\[\033[00m\] \[\033[01m\]\w\[\033[00m\]\n\$ ' + +. ~/.profile -- 2.20.1