23 lines
481 B
Nix
23 lines
481 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# 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 = {
|
|
theme = "catppuccin";
|
|
component_separators = {
|
|
left = "|";
|
|
right = "|";
|
|
};
|
|
section_separators = {
|
|
left = "";
|
|
right = "";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|