Created
May 12, 2022 18:31
-
-
Save cherrot/28b134cc6c98a69cbabf3f5c5c9889d4 to your computer and use it in GitHub Desktop.
Set a brighter color for Comment and Folded for nord-vim colorscheme
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
augroup nord-theme-overrides | |
autocmd! | |
" `:hi Comment` to check current color for Comment (default is #616e88) | |
" 5% brighter #6d7a96, 10% brighter #7b88a1 from https://github.com/arcticicestudio/nord-emacs/issues/43 | |
autocmd ColorScheme nord highlight Comment cterm=italic ctermfg=14 guifg=#6d7a96 | |
" Folded by default is #4C566A, which is too dark to recognize. | |
autocmd ColorScheme nord highlight Folded cterm=italic,bold guifg=#576279 | |
augroup END | |
colorscheme nord |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment