X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=.vimrc;h=303fbff640528b63a0fc08a5e11d5d14b047f727;hb=9ef29a80bcd9692c100823314fed58833ae6ae8f;hp=98f5c1d152256a7f6b16f03af425aa0479508a75;hpb=13da7d94ff5f1764343a5d83d419b8dca8eecd97;p=dotfiles.git diff --git a/.vimrc b/.vimrc index 98f5c1d..303fbff 100644 --- a/.vimrc +++ b/.vimrc @@ -2,6 +2,8 @@ filetype indent plugin on syntax enable color torte hi Normal ctermbg=NONE + +set encoding=utf-8 set history=1000 set number set ruler @@ -19,6 +21,22 @@ set foldmethod=indent set foldnestmax=2 set nofoldenable set cc=80 +set textwidth=79 +set list +set listchars=tab:►\ ,eol:¬,trail:˽,precedes:˻,extends:˼ + +" Source the vimrc while editing +autocmd! bufwritepost .vimrc source % + +" Tab Mappings +map l l +map h h +map j j +map k k + +" Search results stay in middle of screen +nnoremap n nzzzv +nnoremap N Nzzzv " Unmap the arrow keys!!! for prefix in ['i', 'n', 'v'] @@ -27,9 +45,6 @@ for prefix in ['i', 'n', 'v'] endfor endfor -" Macro for compiling and running a tex file -au BufNewFile,BufRead *.tex let @a = ':w :!latex % && latex % && if [ -f %:r.bib ]; then bibtex %:r; fi; latex % && pdflatex % ' - " Load all the skeletons for newfiles for i in split(globpath('~/.vim/skel/', './*'), '\n') let extension = split(i, "/")[-1]