16 lines
317 B
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" ];
|
|
};
|
|
};
|
|
}
|