taboo plugin, tab highlighting improved
This commit is contained in:
parent
2cdc81577e
commit
c6cfdffe92
|
@ -287,10 +287,12 @@ hi Question ctermfg=124
|
|||
hi NonText ctermfg=243
|
||||
|
||||
hi! def link Title InterfaceH3
|
||||
|
||||
hi TabLine ctermfg=244 ctermbg=234
|
||||
|
||||
hi TabLine cterm=none ctermfg=242 ctermbg=234
|
||||
hi TabLineFill cterm=none ctermfg=255 ctermbg=234
|
||||
hi TabLineSel ctermfg=255 ctermbg=234
|
||||
hi TabLineSel ctermfg=250 ctermbg=234
|
||||
hi TabModified ctermfg=250 ctermbg=234
|
||||
hi TabModifiedSelected ctermfg=255 ctermbg=234
|
||||
|
||||
hi StatusLine ctermfg=255 ctermbg=239 term=none cterm=none
|
||||
hi StatusLineNC ctermfg=238 ctermbg=233 term=none cterm=none
|
||||
|
|
10
vimrc
10
vimrc
|
@ -76,7 +76,9 @@ Plugin 'tpope/vim-commentary'
|
|||
" vim-repeat
|
||||
" https://github.com/tpope/vim-repeat
|
||||
Plugin 'tpope/vim-repeat'
|
||||
|
||||
" taboo.vim
|
||||
" https://github.com/gcmt/taboo.vim
|
||||
Plugin 'gcmt/taboo.vim'
|
||||
|
||||
" All of your Plugins must be added before the following line
|
||||
call vundle#end() " required
|
||||
|
@ -274,6 +276,12 @@ nnoremap <leader>p :echom SyntaxItem()<CR>
|
|||
|
||||
" plugins stuff
|
||||
|
||||
" taboo.vim
|
||||
set sessionoptions+=tabpages,globals
|
||||
let g:taboo_tab_format = " %f%m "
|
||||
let g:taboo_renamed_tab_format = " %l%m "
|
||||
let g:taboo_modified_tab_flag = "+"
|
||||
|
||||
" vue-vim
|
||||
" disable preprocessor checking for vue files - increases speed
|
||||
let g:vue_disable_pre_processors=1
|
||||
|
|
Loading…
Reference in New Issue