2025-02-09 17:16:02 +01:00

27 lines
504 B
Nix

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