diff options
-rw-r--r-- | etc/vimrc | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -1,24 +1,21 @@ "" vim:ft=vim set nocompatible -" Line numbers -set nu -" FIXME what's that again? +set number set title set ttyfast -" I prefer 5 spaces per tab +" 5 spaces per tab set tabstop=5 set shiftwidth=5 set shiftround -" Automation. set autoindent set bg=dark colorscheme darkblue syntax enable -" Show Tabs as »··· +" Show Tabs as »···· set list set listchars=tab:»· @@ -29,6 +26,7 @@ set dir=~/.vim-backup " Ignore case in searches set ignorecase +" Greedy remaps (TODO: Add more keys) noremap - : noremap r h noremap n j |