Sojus07 7bbb1a9921 kekl
2025-05-02 22:02:27 +02: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 = "";
};
};
};
};
}