exclude quickfix from the buffer list in vim

This commit is contained in:
Cyryl Płotnicki-Chudyk 2016-05-30 10:16:52 +02:00
parent 12da1074af
commit 06d408ce26

6
.vimrc
View file

@ -75,6 +75,12 @@ set laststatus=2
set noshowmode
set showtabline=1 "only show tabline when more than 1 tab
" exclude quickfix from the buffers list
augroup qf
autocmd!
autocmd FileType qf set nobuflisted
augroup END
" vimdiff
set diffopt+=iwhite
set diffexpr=""