Closed VKondakoff closed 3 years ago
Ok, was able to solve this:
vim.cmd([[
colorscheme nord
highlight StatusLine guifg=#D8DEE9 guibg=#5E81AC
]])
The theme itself has everything in lua tables, internally its just a fancy way of calling the hi
statement you do with vim.cmd
. Right now your way is the only way to solve it.
Hi!
Is it possible to override local syntax highlight group? I'm trying to make statusline of the active window a little bit brighter. One can modify the
StatusLine
intheme.lua
. But is possible to override its value ininit.lua
?I have (unsuccessfully) tried something like this:
What is the correct way to override
StatusLine
?Thank you!