ChristianChiarulli / nvcode-color-schemes.vim

A bunch of generated colorschemes (treesitter supported)
MIT License
300 stars 67 forks source link

Python doc blocks are yellow with Nord color scheme #37

Closed janbuchar closed 3 years ago

janbuchar commented 3 years ago

I have neovim nightly and the most up to date version of nvim-treesitter and this plugin. For some reason, Python doc blocks are highlighted in yellow (#ffff00), which I'm pretty sure isn't intended. Otherwise, everything seems to be highlighted correctly.

What can I do to fix this, and what other information should I provide?

I'd wager the problem is in these lines: https://github.com/ChristianChiarulli/nvcode-color-schemes.vim/blob/master/nord.yml#L192-L199

pesader commented 3 years ago

You can overwrite it locally with this (after you load the plugin):

" Treesitter
highlight! TSText guifg='#A3BE8C'
highlight! TSStrong guifg='#A3BE8C'
highlight! TSEmphasis guifg='#A3BE8C'
highlight! TSUnderline guifg='#A3BE8C'
highlight! TSTitle guifg='#A3BE8C'
highlight! TSLiteral guifg='#A3BE8C'
highlight! TSURI guifg='#A3BE8C'

This will give you the green color you'd expect from nordic python docstrings :) The nordic yellow color is #EBCB8B, in case you want to stick with yellow.

cristian-heredia commented 3 years ago

Should be fixed in this PR Some of Treesitter highlight groups are still in a work in progress.

janbuchar commented 3 years ago

Confirming this is fixed.