fqbn207 fbfc821c8b kekl
2025-01-16 19:19:22 +01:00

26 lines
474 B
Nix

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