blob: a07126d19019a429413e37100053b4be43c28497 (
plain)
1
2
3
4
5
6
7
|
# Minimal bash config for servers
set -o vi
stty -ixon # Disable ctrl-s and ctrl-q for freezing prompt
shopt -s autocd # automatically cd into typed directory
alias vi=vim
alias vi=nvim
|