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'
|
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
|
||||||
|
|
Loading…
Reference in a new issue