vim: quickfix

This commit is contained in:
Michael Grote 2021-11-24 13:59:01 +01:00
parent ff2d2fedbc
commit 61c7429249

8
.vimrc
View file

@ -12,8 +12,6 @@ Plugin 'sheerun/vim-polyglot'
Plugin 'ctrlpvim/ctrlp.vim' Plugin 'ctrlpvim/ctrlp.vim'
" Shellcheck Integration " Shellcheck Integration
Plugin 'itspriddle/vim-shellcheck' Plugin 'itspriddle/vim-shellcheck'
" :ShellCheck!
" <gb> öffnet die Definition im Webbrowser
" git integration G: " git integration G:
Plugin 'tpope/vim-fugitive' Plugin 'tpope/vim-fugitive'
" auto einrueckung " auto einrueckung
@ -107,6 +105,12 @@ let g:ctrlp_custom_ignore = '\v[\/]\.(git|hg|svn)$'
let g:ctrlp_map = '' let g:ctrlp_map = ''
let g:ctrlp_extensions = ['line', 'undo'] let g:ctrlp_extensions = ['line', 'undo']
" ### shellcheck
" farbe für zeilenmarkierung im quickfix-windows
hi QuickFixLine ctermbg=black guibg=black
" mit , + n/p wechsele den Eintrag vor/zurück
nnoremap <leader>n :cn<CR>
nnoremap <leader>p :cp<CR>
" ### lightline/statusline " ### lightline/statusline
" blende insert/visual/... in der commandline aus, steht in lightline " blende insert/visual/... in der commandline aus, steht in lightline
set noshowmode set noshowmode