X-Git-Url: https://git.sthu.org/?p=vimconf.git;a=blobdiff_plain;f=init.vim;h=21e8f9a4704df75770bec602831f8ff214f883d8;hp=94493423c801caa9e5945d9a4b5e6f5ef013bc9f;hb=a50d445c0e555e50f7250a96ed5a027617b93335;hpb=6a1a346c2364aa99764f7e4ce82533055740da3d diff --git a/init.vim b/init.vim index 9449342..21e8f9a 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,6 +33,7 @@ set hlsearch set colorcolumn=+1 set mouse=a +set wildmenu set wildmode=longest,list:full set tabpagemax=100 @@ -156,7 +159,8 @@ au Filetype man setlocal nonumber " Minimum indenting for source code au FileType java,cpp,c,cs let g:detectindent_min_indent = 4 -au BufReadPost *.java :DetectIndent +" Consider using localvimrc config file or editorconfig instead +"au BufReadPost *.java :DetectIndent au BufEnter *.c* let b:fswitchlocs='reg:/lib/include/,rel:.' au BufEnter *.h* let b:fswitchlocs='reg:/include/lib/,rel:.' @@ -167,6 +171,8 @@ au BufEnter *.h,*.hh,*.hxx let b:fswitchdst='cc,c,cxx,cpp' """""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " Some plugin-specific settings +let g:localvimrc_persistent = 1 + au FileType markdown call RagtagInit() let g:detectspelllang_langs = {}