Add lualine configuration for neovim
This commit is contained in:
parent
529ed1319b
commit
0fadd2b58d
2 changed files with 15 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./completion.nix
|
./completion.nix
|
||||||
./lsp.nix
|
./lsp.nix
|
||||||
|
./lualine.nix
|
||||||
./neo-tree.nix
|
./neo-tree.nix
|
||||||
./none-ls.nix
|
./none-ls.nix
|
||||||
./treesitter.nix
|
./treesitter.nix
|
||||||
|
|
|
@ -1 +1,14 @@
|
||||||
{ ... }: { programs.nixvim.plugins.lualine = { enable = true; }; }
|
{ ... }: {
|
||||||
|
programs.nixvim.plugins.lualine = {
|
||||||
|
enable = true;
|
||||||
|
componentSeparators = {
|
||||||
|
left = "";
|
||||||
|
right = "";
|
||||||
|
};
|
||||||
|
sectionSeparators = {
|
||||||
|
left = "";
|
||||||
|
right = "";
|
||||||
|
};
|
||||||
|
disabledFiletypes.statusline = [ "neo-tree" ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue