overwrite gruvbox theme
This commit is contained in:
parent
d8fc5590e4
commit
e315bd7016
1 changed files with 12 additions and 1 deletions
|
|
@ -79,7 +79,18 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
options = {
|
options = {
|
||||||
theme = "gruvbox_dark";
|
theme.__raw = ''
|
||||||
|
(function()
|
||||||
|
local theme = require('lualine.themes.gruvbox_dark')
|
||||||
|
for _, mode in ipairs({'insert', 'visual', 'replace', 'command'}) do
|
||||||
|
if theme[mode] then
|
||||||
|
theme[mode].b = theme.normal.b
|
||||||
|
theme[mode].c = theme.normal.c
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return theme
|
||||||
|
end)()
|
||||||
|
'';
|
||||||
component_separators = { left = "|"; right = "|"; };
|
component_separators = { left = "|"; right = "|"; };
|
||||||
section_separators = { left = " "; right = " "; };
|
section_separators = { left = " "; right = " "; };
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue