X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=vim%2F.vimrc;h=e70d8b5ca2f515c1f098319517a43573200e6536;hb=4c9a4ba24952cad37d093de6e1166013664b8fd2;hp=2f5c2c9a3f4192c7b202e8bbe78861cd0d232ba8;hpb=b8fc352571c05eb7d21afae4ee9cf1e62850e1ab;p=dotfiles.git diff --git a/vim/.vimrc b/vim/.vimrc index 2f5c2c9..e70d8b5 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -1,10 +1,5 @@ -" 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 @@ -26,6 +21,7 @@ set colorcolumn=80 set textwidth=79 set shiftwidth=4 set tabstop=4 +set nowrap " List characters to mark trailing whitespace etc set listchars=nbsp:¬,tab:▸\ ,eol:↩,extends:»,precedes:«,trail:• @@ -35,9 +31,11 @@ set list map j gj map k gk -" Custom split switching using tab -map l l -map h h +" Custom split and tabswitching using tab +map l +map h +map l l +map h h map j j map k k @@ -45,6 +43,10 @@ map k k nnoremap n nzzzv nnoremap N Nzzzv +" Fold settings +set foldmethod=marker +set foldlevelstart=99 + " Unbind arrow keys, who has them anyways on the keyboard... for prefix in ['i', 'n', 'v'] for key in ['', '', '', ''] @@ -65,3 +67,9 @@ 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 + +" Vimtex options +let g:vimtex_compiler_enabled = 0 + +" Background transparency +hi Normal guibg=NONE ctermbg=NONE