Files
cyper-nix/home/neovim/lualine.nix
T
2026-05-08 21:02:55 +02:00

21 lines
439 B
Nix

_: {
# Lualine: Fast and customizable statusline for Neovim
# Displays file info, git status, diagnostics, and mode at the bottom of the editor.
programs.nixvim.plugins.lualine = {
enable = true;
settings = {
options = {
component_separators = {
left = "|";
right = "|";
};
section_separators = {
left = "";
right = "";
};
};
};
};
}