diff options
Diffstat (limited to 'dotvimrc')
-rw-r--r-- | dotvimrc | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -15,6 +15,8 @@ set number set grepprg=grep\ -nH\ $* let g:tex_flavor = "latex" +setglobal formatoptions+=j + " so that :find and :tabfind work set path=$PWD/** @@ -94,7 +96,6 @@ let g:ycm_always_populate_location_list = 1 NeoBundle 'tpope/vim-surround.git' NeoBundle 'taglist.vim' NeoBundle 'ifdef-highlighting' -NeoBundle 'tpope/vim-speeddating' " can do C-A and C-X on dates! NeoBundle 'ciaranm/detectindent' "adapts tabstop and this shit automagically NeoBundle "scrooloose/nerdtree" @@ -120,7 +121,7 @@ if has("nvim") elseif has("gui_running") if has("gui_gtk2") - set guifont=Inconsolata\ Medium\ 12 + set guifont=Source\ Code\ Pro\ Medium\ 10 elseif has("gui_win32") set guifont=Lucida_Console:h10:cANSI endif @@ -225,6 +226,8 @@ endfun noremap <F4> :call MPB_Flip_Ext()<CR> noremap <Leader>f :call MPB_Flip_Ext()<CR> +noremap <Leader>m :make -j4<CR> + "Show trailing whitespace highlight ExtraWhitespace ctermbg=darkgreen guibg=#344011 autocmd BufEnter * exe ':2match ExtraWhitespace /\s\+$\| \+\ze\t\|\t\+\ze /' |