diff options
author | johannst <stoelp@eit.uni-kl.de> | 2016-10-19 16:21:52 +0200 |
---|---|---|
committer | johannst <stoelp@eit.uni-kl.de> | 2016-10-19 16:21:52 +0200 |
commit | 630c85719fb52e3edb9c98a04a716d956223c9d0 (patch) | |
tree | 2099b9e2bcce1e5f29daffb0848c86c7844059dd /bashrc | |
parent | 449186bb8bb51e462ec35b9d420afc14383016df (diff) | |
download | dotfiles-630c85719fb52e3edb9c98a04a716d956223c9d0.tar.gz dotfiles-630c85719fb52e3edb9c98a04a716d956223c9d0.zip |
added vi movement in bash; vim changed keymaps to be non-recursive and changed layout of quickfix window, added auto save/restore (but currently disabled)
Diffstat (limited to 'bashrc')
-rw-r--r-- | bashrc | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -6,6 +6,8 @@ if [ "$TERM" == "screen" ]; then export TERM=screen-256color; fi if [ "$TERM" == "xterm" ]; then export TERM=xterm-256color; fi +# enable vi mode (use 'bind -P' to see bindings) +set -o vi # disable sticky mode stty -ixon |