1
0
Fork 0
NixOS/hosts/totsugeki/home-manager/development/nixvim/lualine.nix
2024-06-28 18:15:13 +02:00

14 lines
264 B
Nix

{ ... }: {
programs.nixvim.plugins.lualine = {
enable = true;
componentSeparators = {
left = "";
right = "";
};
sectionSeparators = {
left = "";
right = "";
};
disabledFiletypes.statusline = [ "neo-tree" ];
};
}