vim: quickfix
This commit is contained in:
parent
ff2d2fedbc
commit
61c7429249
1 changed files with 6 additions and 2 deletions
8
.vimrc
8
.vimrc
|
@ -12,8 +12,6 @@ Plugin 'sheerun/vim-polyglot'
|
|||
Plugin 'ctrlpvim/ctrlp.vim'
|
||||
" Shellcheck Integration
|
||||
Plugin 'itspriddle/vim-shellcheck'
|
||||
" :ShellCheck!
|
||||
" <gb> öffnet die Definition im Webbrowser
|
||||
" git integration G:
|
||||
Plugin 'tpope/vim-fugitive'
|
||||
" auto einrueckung
|
||||
|
@ -107,6 +105,12 @@ let g:ctrlp_custom_ignore = '\v[\/]\.(git|hg|svn)$'
|
|||
let g:ctrlp_map = ''
|
||||
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
|
||||
" blende insert/visual/... in der commandline aus, steht in lightline
|
||||
set noshowmode
|
||||
|
|
Loading…
Reference in a new issue