Files
nixos-config/modules/home-manager/nixvim/plugins/lualine.nix
T
2025-07-07 19:11:26 +02:00

22 lines
404 B
Nix

{
programs.nixvim.plugins.lualine = {
enable = true;
settings = {
options = {
section_separators = "";
component_separators = "";
};
sections = {
lualine_b = [
{
__unkeyed-1 = "branch";
icon = "";
}
];
lualine_c = [ "filename" ];
lualine_x = [ "filetype" ];
};
};
};
}