diff options
Diffstat (limited to 'config/vim')
| -rw-r--r-- | config/vim/pluggins.vim | 1 | ||||
| -rw-r--r-- | config/vim/vimrc | 21 |
2 files changed, 16 insertions, 6 deletions
diff --git a/config/vim/pluggins.vim b/config/vim/pluggins.vim index ee8068f..39dcd05 100644 --- a/config/vim/pluggins.vim +++ b/config/vim/pluggins.vim @@ -33,6 +33,7 @@ call plug#begin($XDG_DATA_HOME . '/vim/plugged') " Plug 'joshdick/onedark.vim' " onedark Plug 'dracula/vim', {'as': 'vim'} " dracula Plug 'altercation/vim-colors-solarized' " solarized + Plug 'morhetz/gruvbox' " gruvbox " intresting but not used Plug 'vim-scripts/rfc-syntax' " rfc diff --git a/config/vim/vimrc b/config/vim/vimrc index 8debac1..0e7fc5a 100644 --- a/config/vim/vimrc +++ b/config/vim/vimrc @@ -84,6 +84,7 @@ set nofoldenable " not folded by default " colorscheme " """"""""""""""" +set background=dark " one {{{ " let g:onedark_terminal_italics=1 " colorscheme onedark @@ -95,18 +96,26 @@ set nofoldenable " not folded by default " silent! colorscheme dracula " }}} " solarized {{{ -set t_Co=16 -let g:solarized_termcolors=16 -let g:solarized_visibility='low' " visibility of invisible chars with set list -set background=dark -silent! colorscheme solarized +" set t_Co=16 +" let g:solarized_termcolors=16 +" let g:solarized_visibility='low' " visibility of invisible chars with set list +" silent! colorscheme solarized " }}} + +let g:gruvbox_italic=1 +let g:gruvbox_bold=1 +let g:gruvbox_termcolors=256 +let g:gruvbox_contrast_dark='medium' +let g:gruvbox_contrast_light='hard' +let g:gruvbox_invert_selection=0 +colorscheme gruvbox + " lightline {{{ let g:lightline = {} " let g:lightline.colorscheme = 'solarized' " lightline theme to solarized " let g:lightline.colorscheme = 'jellybeans' " lightline theme to onedark let g:lightline = { - \ 'colorscheme': 'solarized', + \ 'colorscheme': 'gruvbox', \ 'active': { \ 'left': [ [ 'mode', 'paste' ], \ [ 'gitbranch', 'readonly', 'filename', 'modified' ] ] |
