-
-
Notifications
You must be signed in to change notification settings - Fork 188
Closed
Description
Currently comments are set as such
call s:hi("Comment", s:nord3_gui_bright, "", s:nord3_term, "", s:italicize_comments, "")
However line numbers are set:
call s:hi("LineNr", s:nord3_gui, "NONE", s:nord3_term, "NONE", "", "")
s:nord3_term is actually quite difficult to see (as indicated in nordtheme/vim#227) where the solution was to :set termguicolors.
The same logic unfortunately seems to apply here too - the darker variant (term3) is used for line numbers making them really difficult to see even with termguicolors.
Would you accept a PR to change to:
call s:hi("LineNr", s:nord3_gui_bright, "NONE", s:nord3_term, "NONE", "", "")
EDIT: I suppose this isn't entirely consistent since we have other areas (folds, etc) which are also using nord3. I don't completely understand the rationale behind using nord3 vs nord3_bright.
I'm not sure what the solution here is. I can override this locally in my vimrc I suppose..
Reactions are currently unavailable