fix(nvim): hopefully fixed lualine
This commit is contained in:
parent
fc664c2a39
commit
e089c33e96
|
@ -7,13 +7,28 @@
|
|||
];
|
||||
programs.nixvim.plugins = {
|
||||
lualine = {
|
||||
theme = "auto";
|
||||
globalstatus = true;
|
||||
extensions = [
|
||||
"nvim-tree"
|
||||
"quickfix"
|
||||
"fugitive"
|
||||
];
|
||||
enable = true;
|
||||
extensions = ["fzf" "nvim-dap-ui" "symbols-outline" "trouble" "neo-tree" "quickfix" "fugitive"];
|
||||
componentSeparators.left = "";
|
||||
componentSeparators.right = "";
|
||||
sectionSeparators.left = "";
|
||||
sectionSeparators.right = "";
|
||||
sections = {
|
||||
lualine_a = ["mode"];
|
||||
lualine_b = ["branch" "filename"];
|
||||
lualine_c = ["diff" "diagnostics"];
|
||||
lualine_x = ["encoding" "fileformat" "filetype"];
|
||||
lualine_y = ["progress"];
|
||||
lualine_z = ["location"];
|
||||
};
|
||||
inactiveSections = {
|
||||
lualine_a = ["filename"];
|
||||
lualine_b = [];
|
||||
lualine_c = ["diagnostics"];
|
||||
lualine_x = [];
|
||||
lualine_y = [];
|
||||
lualine_z = ["location"];
|
||||
};
|
||||
};
|
||||
notify.enable = true;
|
||||
indent-blankline = {
|
||||
|
|
Loading…
Reference in a new issue