diff --git a/vim/colors/customred256.vim b/vim/colors/customred256.vim index db09a26..ccac5e7 100644 --- a/vim/colors/customred256.vim +++ b/vim/colors/customred256.vim @@ -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 diff --git a/vimrc b/vimrc index fb7eb66..cf55d2b 100644 --- a/vimrc +++ b/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 p :echom SyntaxItem() " 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