Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for rainbow colors #323

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions colors/nord.vim
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ if has('nvim')
call s:hi("LspDiagnosticsUnderlineInformation" , s:nord8_gui, "", s:nord8_term, "", "undercurl", "")
call s:hi("LspDiagnosticsUnderlineHint" , s:nord10_gui, "", s:nord10_term, "", "undercurl", "")
endif

" Gitsigns
" > lewis6991/gitsigns.nvim
hi! link GitSignsCurrentLineBlame Comment
Expand Down Expand Up @@ -670,6 +670,18 @@ hi! link StartifyBracket Delimiter
hi! link StartifySlash Normal
hi! link StartifySpecial Comment

if has('nvim)
" nvim-ts-rainbow
" > p00f/nvim-ts-rainbow
call s:hi("rainbowcol1", s:nord11_gui, "", s:nord11_term, "", "", "")
call s:hi("rainbowcol2", s:nord12_gui, "", s:nord12_term, "", "", "")
call s:hi("rainbowcol3", s:nord13_gui, "", s:nord13_term, "", "", "")
call s:hi("rainbowcol4", s:nord14_gui, "", s:nord14_term, "", "", "")
call s:hi("rainbowcol5", s:nord9_gui, "", s:nord9_term, "", "", "")
call s:hi("rainbowcol6", s:nord10_gui, "", s:nord10_term, "", "", "")
call s:hi("rainbowcol7", s:nord15_gui, "", s:nord15_term, "", "", "")
endif

"+--- Languages ---+
" Haskell
" > neovimhaskell/haskell-vim
Expand Down Expand Up @@ -712,7 +724,7 @@ hi! link pandocSimpleTableHeader pandocAtxHeader
hi! link pandocStrong markdownBold
hi! link pandocTableHeaderWord pandocAtxHeader
hi! link pandocUListItemBullet Operator

if has('nvim')
" tree-sitter
" > nvim-treesitter/nvim-treesitter
Expand Down