13 lines
220 B
Bash
13 lines
220 B
Bash
|
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)
|
||
|
}
|
||
|
|