1
0
Fork 0
NixOS/hosts/totsugeki/home-manager/development/nixvim/lualine.nix

16 lines
317 B
Nix

{ ... }: {
programs.nixvim.plugins.lualine = {
enable = true;
settings.options = {
component_separators = {
left = "";
right = "";
};
section_separators = {
left = "";
right = "";
};
disabled_filetypes.statusline = [ "neo-tree" ];
};
};
}