1 " My personal vim, nvim, gvim configuration
2 " Author: Stefan Huber <shuber@sthu.org>
5 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""
16 set listchars=tab:»,trail:·,eol:$
19 filetype plugin indent on
34 set wildmode=longest,list:full
38 " Some terminals cause weired symbols due to broken cursor-shape termcodes.
41 " Workaround some broken plugins which set guicursor indiscriminately.
42 "au OptionSet guicursor noautocmd set guicursor=
50 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""
51 " Some global plugin settings
53 " Disable devicons on linux terminal
55 let g:enable_plugin_devicons=0
56 " Enable loading of devicons on all others
58 let g:enable_plugin_devicons=1
63 let g:EditorConfig_exclude_patterns = ['fugitive://.*', 'scp://.*']
65 " Some preferences for indent detection
66 let g:detectindent_min_indent = 2
67 let g:detectindent_max_indent = 4
68 let g:detectindent_preferred_indent = 4
70 " Attention: Must be run after plugsetup.vim
72 highlight default link BadWhitespace SpellCap
74 " Setup BadWhitespace syntax match expressions.
75 function SetBadWhitespaceSyntax()
76 " Do not expose bad whitespace in help buffers or for man pages. Or, more
77 " generally, if we open the file readonly.
78 "if &ft != "help" && &ft != "man"
80 " Make trailing whitespace be flagged as bad.
81 syn match BadWhitespace /\s\+$/ containedin=ALL
82 " Make space before tab be flagged as bad and vice versa
83 syn match BadWhitespace / \+\t/ containedin=ALL
84 syn match BadWhitespace /\t \+/ containedin=ALL
88 " Make trailing whitespace be flagged as bad.
89 au BufRead,BufNewFile * call SetBadWhitespaceSyntax()
91 let g:airline_powerline_fonts=1
92 let g:airline#extensions#tabline#enabled=1
93 let g:airline#extensions#branch#enabled=1
95 let g:gruvbox_contrast_light='hard'
96 let g:gruvbox_contrast_dark='hard'
97 let g:gruvbox_italic = 1
101 " let NERDTreeWinPos="right"
102 let NERDTreeHijackNetrw=0
103 let NERDTreeWinSize=22
104 let NERDTreeQuitOnOpen=1
105 "au VimEnter * if !argc() | Startify | NERDTree | wincmd w
107 let g:neomake_c_enabled_makers = ['clangtidy', 'clangcheck']
108 let g:neomake_cpp_enabled_makers = ['clangtidy', 'clangcheck']
112 call neomake#configure#automake('w')
114 call neomake#configure#automake('nw', 1000)
117 let g:clang_compilation_database = '.'
119 " Speedup deoplete startup time, see deoplete FAQ
120 let g:python3_host_prog = '/usr/bin/python3'
121 " deoplete requires huge startuptime. Delay loading upon first InsertEnter.
122 let g:deoplete#enable_at_startup = 0
123 let g:deoplete#enable_smart_case = 1
124 au InsertEnter * call deoplete#enable()
128 "au FileType markdown,mkd call pencil#init()
129 "au FileType text call pencil#init()
130 "au FileType mail call pencil#init()
131 "au FileType tex call pencil#init()
134 let g:vim_markdown_folding_disabled=1
135 let g:vim_markdown_frontmatter=1
136 let g:vim_markdown_math=1
139 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""
140 " Some filetype-specific settings
142 au FileType text,markdown,mail,tex,gitcommit,mediawiki,vimwiki setlocal spell
143 au FileType text,markdown,mail,gitcommit,mediawiki,vimwiki setlocal fo+=n
145 au Filetype go setlocal shiftwidth=8 tabstop=8 noexpandtab
146 au Filetype tex setlocal shiftwidth=2 tabstop=2
148 au FileType mediawiki setlocal wrap linebreak tw=0
151 au Filetype mail syn match Statement /^\s*-*\s*>8\s*-*\s*$/
152 au Filetype mail syn match Statement /^\s*-*\s*8<\s*-*\s*$/
154 " Line wrap crippled with numbers shown
155 au Filetype man setlocal nonumber
157 " Minimum indenting for source code
158 au FileType java,cpp,c,cs let g:detectindent_min_indent = 4
159 au BufReadPost *.java :DetectIndent
161 au BufEnter *.c* let b:fswitchlocs='reg:/lib/include/,rel:.'
162 au BufEnter *.h* let b:fswitchlocs='reg:/include/lib/,rel:.'
164 au BufEnter *.cpp,*.cc,*.cxx let b:fswitchdst='h,hxx,hpp,hh'
165 au BufEnter *.h,*.hh,*.hxx let b:fswitchdst='cc,c,cxx,cpp'
167 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""
168 " Some plugin-specific settings
170 au FileType markdown call RagtagInit()
172 let g:detectspelllang_langs = {}
173 let g:detectspelllang_langs.aspell =[ 'en_US', 'de_AT']
175 :let g:org_todo_keywords = [['TODO(t)', 'WAITING(w)', '|', 'DONE(d)'],
176 \ ['|', 'OBSOLETE(o)', 'WONT(n)'],
179 let g:vimwiki_list = [{'path': '~/.vimwiki/',
180 \ 'template_path': '~/.vim/vimwiki/templates',
181 \ 'template_default': 'default',
182 \ 'template_ext': '.html'}]
185 au FileType java setlocal omnifunc=javacomplete#Complete
186 au FileType java JCEnable
187 " See https://github.com/artur-shaik/vim-Javacomplete2
189 au FileType java nmap <F4> <Plug>(JavaComplete-Imports-AddSmart)
190 au FileType java imap <F4> <Plug>(JavaComplete-Imports-AddSmart)
191 " <C-j>ii <leader>jii
192 au FileType java nmap <F5> <Plug>(JavaComplete-Imports-Add)
193 au FileType java imap <F5> <Plug>(JavaComplete-Imports-Add)
195 au FileType java nmap <F6> <Plug>(JavaComplete-Imports-AddMissing)
196 au FileType java imap <F6> <Plug>(JavaComplete-Imports-AddMissing)
198 au FileType java nmap <F7> <Plug>(JavaComplete-Imports-RemoveUnused)
199 au FileType java imap <F7> <Plug>(JavaComplete-Imports-RemoveUnused)
202 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""
206 if filereadable($HOME . '/.vim/init-local.vim')
207 source ~/.vim/init-local.vim