aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2017-05-07 17:40:07 +0200
committerMax Christian Pohle2017-05-07 17:40:07 +0200
commit4a6d3efdcd52a7e358af30027acf6950010e26be (patch)
treec9a4106078a541e854e034efd8325d34c22a8df8
parent5ae3f6fb84f1027a3f017d47e60e1d5cdd0e7fb2 (diff)
downloadvim-4a6d3efdcd52a7e358af30027acf6950010e26be.tar.bz2
vim-4a6d3efdcd52a7e358af30027acf6950010e26be.zip
Many fine grained improvements
-rw-r--r--vimrc-full63
1 files changed, 50 insertions, 13 deletions
diff --git a/vimrc-full b/vimrc-full
index e18b9f5..f4a9faa 100644
--- a/vimrc-full
+++ b/vimrc-full
@@ -36,7 +36,7 @@ Plug 'vim-airline/vim-airline' | " beautification of the
36set laststatus=2 | " required by AirLine, without status line does not appear until a window split 36set laststatus=2 | " required by AirLine, without status line does not appear until a window split
37let g:airline_extensions = ['tabline', 'branch', 'syntastic', 'tagbar', 'whitespace', 'ycm'] 37let g:airline_extensions = ['tabline', 'branch', 'syntastic', 'tagbar', 'whitespace', 'ycm']
38let b:airline_whitespace_checks = ['indent', 'trailing', 'long', 'mixed-indent-file'] 38let b:airline_whitespace_checks = ['indent', 'trailing', 'long', 'mixed-indent-file']
39let g:airline_section_c = "" | " was: %F 39" let g:airline_section_c = "" | " was: %F
40let g:airline#extensions#tagbar#flags = 'f' | " even though the airline extension is off this controls :h tagbar-extend 40let g:airline#extensions#tagbar#flags = 'f' | " even though the airline extension is off this controls :h tagbar-extend
41let g:airline#extensions#tabline#left_sep = ' ' 41let g:airline#extensions#tabline#left_sep = ' '
42let g:airline#extensions#tabline#left_alt_sep = ' | ' 42let g:airline#extensions#tabline#left_alt_sep = ' | '
@@ -48,11 +48,12 @@ let g:airline#extensions#tabline#show_tabs = 0 |
48let g:airline#extensions#tagbar#enabled = 0 | 48let g:airline#extensions#tagbar#enabled = 0 |
49let g:airline#extensions#whitespace#enabled = 1 | 49let g:airline#extensions#whitespace#enabled = 1 |
50let g:airline#extensions#wordcount#enabled = 0 | 50let g:airline#extensions#wordcount#enabled = 0 |
51let g:airline_detect_modified = 0 | 51let g:airline_detect_modified = 1 |
52let g:airline_detect_paste = 0 | 52let g:airline_detect_paste = 0 |
53let g:airline_exclude_preview = 0 | 53let g:airline_exclude_preview = 1 |
54let g:airline_inactive_collapse = 1 | 54let g:airline_inactive_collapse = 1 |
55let g:airline_powerline_fonts = 1 | 55let g:airline_powerline_fonts = 1 |
56let g:airline_skip_empty_sections = 1 |
56" AIRLINE_Theme: 57" AIRLINE_Theme:
57Plug 'vim-airline/vim-airline-themes' | " airline themes to match any light and dark terminal using :AirlineTheme 58Plug 'vim-airline/vim-airline-themes' | " airline themes to match any light and dark terminal using :AirlineTheme
58let g:airline_theme='base16' | " specifies which colorscheme should airline uses 59let g:airline_theme='base16' | " specifies which colorscheme should airline uses
@@ -61,7 +62,7 @@ let g:airline_theme='base16' | " specifies which colorsc
61 62
62 63
63" NERDTree: replaces NetRW, as long as it has so many bugs 64" NERDTree: replaces NetRW, as long as it has so many bugs
64Plug 'scrooloose/nerdtree' | " 65Plug 'scrooloose/nerdtree' | "
65let NERDTreeCascadeSingleChildDir = 0 | " I don't get how one can use <m> to create files in that included directory 66let NERDTreeCascadeSingleChildDir = 0 | " I don't get how one can use <m> to create files in that included directory
66let NERDTreeShowBookmarks = 1 | " show bookmarks by default (when opening for the first time) 67let NERDTreeShowBookmarks = 1 | " show bookmarks by default (when opening for the first time)
67let NERDTreeIgnore = ['\.aux$'] 68let NERDTreeIgnore = ['\.aux$']
@@ -126,6 +127,9 @@ let g:ycm_key_list_select_completion = ['<Down>']
126let g:ycm_key_list_previous_completion = ['<Up>'] 127let g:ycm_key_list_previous_completion = ['<Up>']
127let g:ycm_global_ycm_extra_conf = '~/src/ycm_extra_conf.py' 128let g:ycm_global_ycm_extra_conf = '~/src/ycm_extra_conf.py'
128let g:ycm_semantic_triggers = { 'c': [ 're!.' ] } 129let g:ycm_semantic_triggers = { 'c': [ 're!.' ] }
130let g:ycm_python_binary_path = 'python' " the python interpreter of choice (for code checking)
131
132nnoremap <F7> :YcmCompleter FixIt<CR>
129" disable <tab>-key for YCM so that it can be used with ultisnips 133" disable <tab>-key for YCM so that it can be used with ultisnips
130" let g:ycm_key_list_select_completion=[] 134" let g:ycm_key_list_select_completion=[]
131" let g:ycm_key_list_previous_completion=[] 135" let g:ycm_key_list_previous_completion=[]
@@ -243,11 +247,16 @@ set nocursorcolumn | " turn visual cursor column off (improves perfor
243set nocursorline | " turn visual cursor line off (improves performance) 247set nocursorline | " turn visual cursor line off (improves performance)
244set nrformats+=alpha | " allows CTRL-A & CTRL-X to increment and decrement letters, not just numbers 248set nrformats+=alpha | " allows CTRL-A & CTRL-X to increment and decrement letters, not just numbers
245set nofoldenable | " disable code folding. I hate code folding 249set nofoldenable | " disable code folding. I hate code folding
246set foldcolumn=4 | " if code folding gets used display it in the clutter bar, where line numbers live 250set foldmethod=syntax | " foldlevel: syntax, indent, manual
251set foldcolumn=1 | " if code folding gets used display it in the clutter bar, where line numbers live
252set foldclose=all | " automatically fold, when the cursor leaves the folded area
253set foldopen=all | " unfold when cursor moves into the closed fold
254set foldtext=Foldtext() | "
247set relativenumber | " relative line numbers can speed up navigation 255set relativenumber | " relative line numbers can speed up navigation
248set noshowmode | " because we are using some powerline derivat 256set noshowmode | " because we are using some powerline derivat
249set nostartofline | " when scrolling: do not move the cursor to column 1 257set nostartofline | " when scrolling: do not move the cursor to column 1
250set notimeout ttimeout | " improves performance but is known to cause problems on slow terminals 258set notimeout ttimeout | " improves performance but is known to cause problems on slow terminals
259set ttimeoutlen=10 | " set esc key timeout in ms-
251set nowrap | " but do not (by default) wrap long lines around 260set nowrap | " but do not (by default) wrap long lines around
252set number | " turn line numbers on/off (performance decreases when they are shown) 261set number | " turn line numbers on/off (performance decreases when they are shown)
253set pumheight=8 | " Determines the maximum number of items to show in the popup menu for 262set pumheight=8 | " Determines the maximum number of items to show in the popup menu for
@@ -265,9 +274,8 @@ set winminwidth=30 | " (and all other windows, so TODO: watch out)
265set tags+=../tags 274set tags+=../tags
266" set textwidth=100 | " line length (80 used to be default, but...) 275" set textwidth=100 | " line length (80 used to be default, but...)
267set textwidth=120 | " better done with modeline 276set textwidth=120 | " better done with modeline
268set colorcolumn=120 | " better done with modeline 277set colorcolumn= | " not used, because we have a :match directive for textwidth
269set ts=4 sts=4 sw=4 expandtab | " better done with a modeline 278set ts=4 sts=4 sw=4 expandtab | " better done with a modeline
270set ttimeoutlen=10 | " set esc key timeout in ms-
271set updatetime=1000 | " updates the screen more often 279set updatetime=1000 | " updates the screen more often
272set writedelay=0 280set writedelay=0
273set lcs+=space:· | " local space char 281set lcs+=space:· | " local space char
@@ -276,11 +284,17 @@ set lcs+=space:· | " local space char
276" set term=xtermc | " may be required on solaris 284" set term=xtermc | " may be required on solaris
277set t_Co=256 | " required on some ssh sessions 285set t_Co=256 | " required on some ssh sessions
278let &t_Co=256 286let &t_Co=256
279set background=light | " hint how the terminal background looks like 287" set termguicolors
288" set background=light | " hint how the terminal background looks like
289
290" uses the default terminal background color as background (allows transparency)
291" autocmd Colorscheme * set background=dark
292
280 293
281" set termguicolors 294" set termguicolors
282let base16colorspace=256 295let base16colorspace=256
283if filereadable(expand("~/.vimrc_background")) 296if filereadable(expand("~/.vimrc_background"))
297 set background=light
284 source ~/.vimrc_background 298 source ~/.vimrc_background
285else 299else
286 colorscheme base16-phd 300 colorscheme base16-phd
@@ -291,11 +305,26 @@ else
291" colorscheme base16-default-dark 305" colorscheme base16-default-dark
292endif 306endif
293 307
294highlight normal ctermbg=NONE | " uses the default terminal background color as background (allows transparency) 308" highlight Normal ctermbg=NONE ctermfg=white
295highlight CursorLineNr ctermbg=black ctermfg=NONE 309highlight NonText ctermbg=NONE ctermfg=white
310highlight! CursorLineNr cterm=inverse | " ctermbg=black ctermfg=NONE
311highlight! Pmenu ctermbg=LightYellow ctermfg=blue cterm=italic
312highlight! MoreMsg cterm=inverse
313highlight! link Folded LineNr
314highlight Cursor guibg=green
315highlight! link VertSplit LineNr
316execute ':match ColorColumn /\%>'.&textwidth.'v./'
317
318
319set fillchars+=fold:\ | "
320set fillchars+=vert:\│ | " cool vertical split char
321" set fillchars+=stlnc:\― | "
322
323
324
325
296 326
297 327
298highlight Cursor guibg=green
299" let &t_EI .= "\<Esc>[0 q" 328" let &t_EI .= "\<Esc>[0 q"
300" let &t_SI = "\<Esc>]12;green\x7" 329" let &t_SI = "\<Esc>]12;green\x7"
301if has('autocmd') 330if has('autocmd')
@@ -314,7 +343,7 @@ if has("multi_byte")
314 set listchars+=extends:» | " symbols used when using :set list (which displays non-printable chars) 343 set listchars+=extends:» | " symbols used when using :set list (which displays non-printable chars)
315 set listchars+=precedes:« | " symbols used when using :set list (which displays non-printable chars) 344 set listchars+=precedes:« | " symbols used when using :set list (which displays non-printable chars)
316 345
317 set listchars+=tab:˲\ | " symbols used when using :set list (which displays non-printable chars) 346 set listchars+=tab:\ | " symbols used when using :set list (which displays non-printable chars)
318 set listchars+=trail:· | " symbols used when using :set list (which displays non-printable chars) 347 set listchars+=trail:· | " symbols used when using :set list (which displays non-printable chars)
319 " set listchars+=eol:↲ | " symbols used when using :set list (which displays non-printable chars) 348 " set listchars+=eol:↲ | " symbols used when using :set list (which displays non-printable chars)
320 " set listchars+=space:· | " symbols used when using :set list (which displays non-printable chars) 349 " set listchars+=space:· | " symbols used when using :set list (which displays non-printable chars)
@@ -338,7 +367,7 @@ if has('cscope') " compiled with cscope support?
338 cnoreabbrev csh cs help 367 cnoreabbrev csh cs help
339 368
340 command! -nargs=0 Cscope cs add $VIMSRC/src/cscope.out $VIMSRC/src 369 command! -nargs=0 Cscope cs add $VIMSRC/src/cscope.out $VIMSRC/src
341endif 370endif
342 371
343" GUI_VERSION: 372" GUI_VERSION:
344if has("gui_running") 373if has("gui_running")
@@ -581,3 +610,11 @@ let g:netrw_winsize = 20 | " window size in percent
581" \ 'separator': { 'left': "\ue0b0", 'right': "\ue0b2" }, 610" \ 'separator': { 'left': "\ue0b0", 'right': "\ue0b2" },
582" \ 'subseparator': { 'left': "\ue0b1", 'right': "\ue0b3" } 611" \ 'subseparator': { 'left': "\ue0b1", 'right': "\ue0b3" }
583" \ } 612" \ }
613
614" highlight! link airline_warning Error
615" autocmd User AirlineAfterTheme highlight! airline_warning ctermbg=NONE
616" autocmd AirlineAfterTheme highlight! airline_warning ctermbg=NONE
617" autocmd BufEnter * highlight! link airline_warning Error
618
619
620" autocmd BufEnter * lcd %:p:h | " Plugin vim-rooter get used instead (which is much more sane as well)
..