add .bashrc

This commit is contained in:
hippoz 2022-01-21 19:15:35 +02:00
parent ce5225d901
commit e1a3df256c
Signed by: hippoz
GPG key ID: 7C52899193467641

12
dots/.bashrc Normal file
View file

@ -0,0 +1,12 @@
bind 'set show-all-if-ambiguous on'
bind 'TAB:menu-complete'
export EDITOR="nvim"
export BROWSER="firefox"
alias vim="nvim"
alias v="nvim"
cf() {
cd $(find ~/code -maxdepth 4 -type d -name "$1" -print | sed 1q)
}