10 lines
165 B
Nix
Raw Normal View History

2022-11-27 17:21:18 -07:00
{ pkgs, ... }: {
plugins = [ pkgs.vimPlugins.lualine-nvim ];
setup.lualine = {
options = {
2023-07-09 23:06:36 -06:00
theme = "base16";
2022-11-27 17:21:18 -07:00
icons_enabled = true;
};
};
}