taboo plugin, tab highlighting improved

This commit is contained in:
ManjaroOne666 2017-09-30 22:53:48 +01:00
parent 2cdc81577e
commit c6cfdffe92
2 changed files with 14 additions and 4 deletions

View File

@ -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
View File

@ -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