Sojus07 55ee078daf kekl
2025-07-23 05:58:29 +02:00

27 lines
501 B
Nix

{ pkgs, lib, ... }:
{
programs.nvf.settings.vim = {
statusline = {
lualine = {
enable = true;
theme = "base16";
globalStatus = true;
icons.enable = true;
ignoreFocus = [
"neo-tree"
"filename"
"location"
];
componentSeparator = {
left = "";
right = "";
};
sectionSeparator = {
left = "";
right = "";
};
};
};
};
}