X-Git-Url: https://git.sthu.org/?p=vimconf.git;a=blobdiff_plain;f=init.vim;h=61806e6cd52c48015658fde838301a871b15f2a3;hp=3c81e4edc15d6bda1cd41f069e83a1e1f8de1521;hb=048e37869fcafbf2ab196ce013a9e158b6a3f988;hpb=225ae47ee0ac495e9575ad6401fa74e0325ee4b9 diff --git a/init.vim b/init.vim index 3c81e4e..61806e6 100644 --- a/init.vim +++ b/init.vim @@ -6,6 +6,8 @@ " Some global settings set nocompatible +" Breaks colors for some versions of mosh, but not if tmux is used on top of +" mosh. See https://github.com/mobile-shell/mosh/issues/928 set termguicolors set number set cursorline @@ -31,17 +33,11 @@ set hlsearch set colorcolumn=+1 set mouse=a +set wildmenu set wildmode=longest,list:full set tabpagemax=100 -" Some terminals cause weired symbols due to broken cursor-shape termcodes. -if has('nvim') - "set guicursor= - " Workaround some broken plugins which set guicursor indiscriminately. - "au OptionSet guicursor noautocmd set guicursor= -end - syntax on " Load some macros @@ -141,6 +137,9 @@ let g:vim_markdown_math=1 au FileType text,markdown,mail,tex,gitcommit,mediawiki,vimwiki setlocal spell au FileType text,markdown,mail,gitcommit,mediawiki,vimwiki setlocal fo+=n +au Filetype mail setlocal formatoptions+=o +" Add | for block quotation, such that gq respects it +au Filetype mail setlocal comments+=n:\| au Filetype go setlocal shiftwidth=8 tabstop=8 noexpandtab au Filetype tex setlocal shiftwidth=2 tabstop=2 @@ -164,6 +163,7 @@ au BufEnter *.h* let b:fswitchlocs='reg:/include/lib/,rel:.' au BufEnter *.cpp,*.cc,*.cxx let b:fswitchdst='h,hxx,hpp,hh' au BufEnter *.h,*.hh,*.hxx let b:fswitchdst='cc,c,cxx,cpp' +au BufNewFile *.{h,hpp,hxx} call AddIncludeGuards() """""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " Some plugin-specific settings