11 lines
165 B
Nix
Raw Normal View History

2024-04-20 09:42:06 -04:00
{ pkgs, ... }:
{
2022-11-27 17:21:18 -07:00
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;
};
};
}