forked from hgaiser/neovim-config
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from hgaiser/master
Latest changes
- Loading branch information
Showing
5 changed files
with
48 additions
and
1,491 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
runtime colors/gruvbox.vim | ||
|
||
let g:colors_name = "gruvbox-custom" | ||
|
||
" Use highlighting to show errors, not underlining. | ||
hi CocErrorHighlight cterm=none ctermbg=88 gui=none guibg=#883322 | ||
hi CocWarningHighlight cterm=none ctermbg=94 gui=none guibg=#9a4d00 | ||
hi CocInfoHighlight cterm=none ctermbg=58 gui=none guibg=#7b632f | ||
hi CocHintHighlight cterm=none ctermbg=60 gui=none guibg=#4e6e62 | ||
|
||
hi SpellCap cterm=none ctermbg=88 gui=italic guibg=#883322 | ||
hi SpellBad cterm=none ctermbg=88 gui=italic guibg=#883322 | ||
hi SpellLocal cterm=none ctermbg=88 gui=italic guibg=#883322 | ||
hi SpellRare cterm=none ctermbg=88 gui=italic guibg=#883322 | ||
|
||
" Set white text color to be a bit brighter. | ||
hi Normal guifg=#ede7d8 | ||
|
||
" Set sign column to the same color as the line numbers column. | ||
hi SignColumn guibg=#1d2021 | ||
|
||
" Show operators (+, -, =, etc.) in blue for easier reading. | ||
hi link Operator GruvboxBlue |
Oops, something went wrong.