mirror of
https://github.com/akr2002/nv.git
synced 2024-11-12 20:19:45 +00:00
35 lines
677 B
Nix
35 lines
677 B
Nix
|
{
|
||
|
plugins.lualine = {
|
||
|
enable = true;
|
||
|
alwaysDivideMiddle = true;
|
||
|
globalstatus = true;
|
||
|
ignoreFocus = ["neo-tree"];
|
||
|
extensions = ["fzf"];
|
||
|
theme = "auto";
|
||
|
componentSeparators = {
|
||
|
left = "|";
|
||
|
right = "|";
|
||
|
};
|
||
|
sectionSeparators = {
|
||
|
left = "█"; #
|
||
|
right = "█"; #
|
||
|
};
|
||
|
sections = {
|
||
|
lualine_a = ["mode"];
|
||
|
lualine_b = [
|
||
|
{
|
||
|
name = "branch";
|
||
|
icon = "";
|
||
|
}
|
||
|
"diff"
|
||
|
"diagnostics"
|
||
|
];
|
||
|
lualine_c = ["filename"];
|
||
|
lualine_x = ["filetype"];
|
||
|
lualine_y = ["progress"];
|
||
|
lualine_z = [''" " .. os.date("%R")''];
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|