init: Reorganize settings
authorStefan Huber <shuber@sthu.org>
Mon, 25 Mar 2019 10:29:19 +0000 (11:29 +0100)
committerStefan Huber <shuber@sthu.org>
Mon, 8 Apr 2019 21:05:39 +0000 (23:05 +0200)
init.vim

index 50d395c48d2a696c6fa4343faebddc67abee36c0..05a7966e846bbeb8ac5319cc5b9c8cc323bf8580 100644 (file)
--- a/init.vim
+++ b/init.vim
@@ -1,6 +1,10 @@
 " My personal vim, nvim, gvim configuration
 " Author: Stefan Huber <shuber@sthu.org>
 
 " My personal vim, nvim, gvim configuration
 " Author: Stefan Huber <shuber@sthu.org>
 
+
+""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
+" Some global settings
+
 set nocompatible
 set termguicolors
 set number
 set nocompatible
 set termguicolors
 set number
@@ -34,6 +38,17 @@ if has('nvim')
 end
 
 syntax on
 end
 
 syntax on
+
+
+" Trailing whitespace
+highlight default link TrailingWhitespace SpellCap
+" Make trailing whitespace be flagged as bad.
+au BufRead,BufNewFile * syn match TrailingWhitespace /\s\+$/ containedin=ALL
+
+
+""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
+" Some global plugin settings
+
 runtime plugsetup.vim
 
 let g:airline_powerline_fonts=1
 runtime plugsetup.vim
 
 let g:airline_powerline_fonts=1
@@ -78,34 +93,45 @@ let g:vim_markdown_folding_disabled=1
 let g:vim_markdown_frontmatter=1
 let g:vim_markdown_math=1
 
 let g:vim_markdown_frontmatter=1
 let g:vim_markdown_math=1
 
-au FileType markdown call RagtagInit()
 
 
-let g:guesslang_langs=[ 'en_US', 'de_AT']
-au FileType text,markdown,mail,tex,gitcommit,mediawiki,vimwiki setlocal spell
-au BufReadPost * :DetectIndent
+""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
+" Some filetype settings
 
 
-au FileType text,markdown,mail,gitcommit,mediawiki,vimwiki set fo+=n
+" mutt and neomutt
+au BufRead,BufNewFile ~/.mutt/tmp/*mutt-* set filetype=mail
+au BufRead,BufNewFile *.muttrc set filetype=muttrc
 
 
-au FileType mediawiki setlocal wrap linebreak tw=0
+au BufRead,BufNewFile *.cls set filetype=tex
 
 
-au BufEnter *.c* let b:fswitchlocs='reg:/lib/include/,rel:.'
-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'
+""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
+" Some filetype-specific settings
+
+au FileType text,markdown,mail,tex,gitcommit,mediawiki,vimwiki setlocal spell
+au FileType text,markdown,mail,gitcommit,mediawiki,vimwiki set fo+=n
 
 
+au Filetype tex set shiftwidth=2
+
+au FileType mediawiki setlocal wrap linebreak tw=0
 
 "git scissor line
 au Filetype mail syn match Statement /^\s*-*\s*>8\s*-*\s*$/
 au Filetype mail syn match Statement /^\s*-*\s*8<\s*-*\s*$/
 
 
 "git scissor line
 au Filetype mail syn match Statement /^\s*-*\s*>8\s*-*\s*$/
 au Filetype mail syn match Statement /^\s*-*\s*8<\s*-*\s*$/
 
-"mutt and neomutt
-au BufRead,BufNewFile ~/.mutt/tmp/*mutt-* set filetype=mail
-au BufRead,BufNewFile *.muttrc set filetype=muttrc
 
 
-" Some settings for tex files
-au BufRead,BufNewFile *.cls set filetype=tex
-au Filetype tex set shiftwidth=2
+""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
+" Some plugin-specific settings
+
+au FileType markdown call RagtagInit()
+
+let g:guesslang_langs=[ 'en_US', 'de_AT']
+au BufReadPost * :DetectIndent
+
+au BufEnter *.c* let b:fswitchlocs='reg:/lib/include/,rel:.'
+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'
 
 :let g:org_todo_keywords = [['TODO(t)', 'WAITING(w)', '|', 'DONE(d)'],
       \ ['|', 'OBSOLETE(o)', 'WONT(n)'],
 
 :let g:org_todo_keywords = [['TODO(t)', 'WAITING(w)', '|', 'DONE(d)'],
       \ ['|', 'OBSOLETE(o)', 'WONT(n)'],
@@ -116,10 +142,8 @@ let g:vimwiki_list = [{'path': '~/.vimwiki/',
       \ 'template_default': 'default',
       \ 'template_ext': '.html'}]
 
       \ 'template_default': 'default',
       \ 'template_ext': '.html'}]
 
-" Trailing whitespace
-highlight default link TrailingWhitespace SpellCap
-" Make trailing whitespace be flagged as bad.
-au BufRead,BufNewFile * syn match TrailingWhitespace /\s\+$/ containedin=ALL
+
+""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 
 runtime macros.vim
 runtime keymaps.vim
 
 runtime macros.vim
 runtime keymaps.vim