X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=.vimrc;h=2c17b65a991016d599f6fdf2ca4de3e57e9e53e5;hb=6c6e1b5d8c2278a9bd75987cf7db73348b91b855;hp=9debb62b3e0d26ccf7125864ea4cfda900b04b85;hpb=40783e3fe075693df89e9f31f703c403afeb5bc6;p=dotfiles.git diff --git a/.vimrc b/.vimrc index 9debb62..2c17b65 100644 --- a/.vimrc +++ b/.vimrc @@ -1,8 +1,14 @@ -syntax enable -filetype indent plugin on +" Package manager +execute pathogen#infect() +" Automaticly source some files after writing autocmd! bufwritepost .vimrc source % +autocmd! bufwritepost .bashrc !source % +autocmd! bufwritepost .Xresources !xrdb -merge % +" Some general options +syntax enable +filetype indent plugin on set encoding=utf-8 set history=1000 set number @@ -15,21 +21,36 @@ set novisualbell set nobackup set nowb set noswapfile -set shiftwidth=2 -set tabstop=2 set cc=80 set textwidth=79 +" Custom split switching using tab map l l map h h map j j map k k +" Center the search results nnoremap n nzzzv nnoremap N Nzzzv +" Unbind arrow keys, who has them anyways on the keyboard... for prefix in ['i', 'n', 'v'] for key in ['', '', ''] exe prefix . "noremap " . key . " " endfor endfor + +" GPG options +let g:GPGPreferArmor=1 +let g:GPGPreferSign=1 + +" Syntastic options +set statusline+=%#warningmsg# +set statusline+=%{SyntasticStatuslineFlag()} +set statusline+=%* + +let g:syntastic_always_populate_loc_list = 1 +let g:syntastic_auto_loc_list = 1 +let g:syntastic_check_on_open = 0 +let g:syntastic_check_on_wq = 0