Skip to content

Instantly share code, notes, and snippets.

@cherrot
Created May 12, 2022 18:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cherrot/28b134cc6c98a69cbabf3f5c5c9889d4 to your computer and use it in GitHub Desktop.
Save cherrot/28b134cc6c98a69cbabf3f5c5c9889d4 to your computer and use it in GitHub Desktop.
Set a brighter color for Comment and Folded for nord-vim colorscheme
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