-
Thanks for this palette. Love it! Long time vim user, just now getting into nvim, themes, colors, etc. New to that world. Using lazy. I'm not sure how to make that override (bg_visual ... the background color of text you've selected in visual mode) in my local setup (seems like you kinda have to know the right path/names/place to make that adjustment). Any assistance would be appreciated. Keep up the awesome work :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Glad you like it! Sorry for only replying now. There is an example in the readme: local palette = require 'nordic.colors'
require 'nordic' .setup {
override = {
TelescopePromptTitle = {
fg = palette.red.bright,
bg = palette.green.base,
italic = true,
underline = true,
sp = palette.yellow.dim,
undercurl = false
}
}
} where You can find all the highlight groups used in this directory's files. Does this help? |
Beta Was this translation helpful? Give feedback.
Glad you like it! Sorry for only replying now.
There is an example in the readme:
where
TelescopePromptTitle
is a highlight group.You can find all the highlight groups used in this directory's files.
Does this help?