forked from extern/nix-config
neovim: Make lualine-nvim translucent
This commit is contained in:
parent
6a53d7f5eb
commit
ac35390c59
@ -156,7 +156,18 @@ in {
|
||||
plugin = lualine-nvim;
|
||||
type = "lua";
|
||||
config = ''
|
||||
local theme = require("lualine.themes.base16")
|
||||
theme.normal.b.bg = nil
|
||||
theme.normal.c.bg = nil
|
||||
theme.replace.b.bg = nil
|
||||
theme.insert.b.bg = nil
|
||||
theme.visual.b.bg = nil
|
||||
theme.inactive.a.bg = nil
|
||||
theme.inactive.b.bg = nil
|
||||
theme.inactive.c.bg = nil
|
||||
|
||||
require('lualine').setup {
|
||||
options = { theme = theme },
|
||||
sections = { lualine_c = {'%f'} }
|
||||
}
|
||||
'';
|
||||
|
Loading…
Reference in New Issue
Block a user