1
0
Fork 0

Add lualine configuration for neovim

This commit is contained in:
Avery 2024-03-19 20:04:47 +01:00
parent 529ed1319b
commit 0fadd2b58d
Signed by: Avery
GPG key ID: B684FD451B692E04
2 changed files with 15 additions and 1 deletions

View file

@ -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

View file

@ -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" ];
};
}