Use vim onedark but change the white color (#38)

This commit is contained in:
Santiago Soler 2021-06-07 14:50:08 -03:00 committed by GitHub
parent 306b7656df
commit 190b84ce1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 3 deletions

View File

@ -12,7 +12,7 @@ endif
call plug#begin('~/.vim/plugged')
" Plugins are downloaded from Github (username/repo)
Plug 'sonph/onehalf', { 'rtp': 'vim' } " onehalf colorscheme
Plug 'joshdick/onedark.vim'
Plug 'sheerun/vim-polyglot'
Plug 'tpope/vim-fugitive' " git wrapper
Plug 'vim-syntastic/syntastic' " syntax linter
@ -115,8 +115,12 @@ if (empty($TMUX))
endif
endif
let g:onedark_color_overrides = {
\ "white": {"gui": "#dcdfe4", "cterm": "145", "cterm16": "7" },
\}
" Set colorscheme
colorscheme onehalfdark
colorscheme onedark
" Highlight CursorLine depending on mode (as airline onedark theme)
set cursorline
@ -212,7 +216,7 @@ let g:airline_left_sep = ''
let g:airline_right_sep = ''
let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#tabline#formatter = 'unique_tail'
let g:airline_theme='onehalfdark'
let g:airline_theme='onedark'
" syntastic
" ---------