1
0
forked from extern/nix-config

neovim: Make lualine-nvim translucent

This commit is contained in:
Donovan Glover 2023-06-09 10:34:42 -04:00
parent 6a53d7f5eb
commit ac35390c59
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -156,7 +156,18 @@ in {
plugin = lualine-nvim; plugin = lualine-nvim;
type = "lua"; type = "lua";
config = '' 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 { require('lualine').setup {
options = { theme = theme },
sections = { lualine_c = {'%f'} } sections = { lualine_c = {'%f'} }
} }
''; '';