21 lines
439 B
Nix
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 = "";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|