Commit | Line | Data |
---|---|---|
1 | # ~/.bashrc: executed by bash(1) for non-login shells. | |
2 | ||
3 | # If not running interactively, don't do anything | |
4 | case $- in | |
5 | *i*) ;; | |
6 | *) return;; | |
7 | esac | |
8 | ||
9 | bind 'set show-all-if-ambiguous on' | |
10 | bind 'TAB:menu-complete' | |
11 | shopt -s histappend | |
12 | ||
13 | #export PS1='\n\u@\h \w\n\$ ' | |
14 | export PS1='\n\[\033[01;32m\]\u@\h\[\033[00m\] \[\033[01m\]\w\[\033[00m\]\n\$ ' | |
15 | ||
16 | . ~/.profile |