Configure nvim plugins

This commit is contained in:
Isshi0417 2024-07-19 15:46:55 +09:00
parent 42678d9d1c
commit c2d5665529
4 changed files with 14 additions and 8 deletions

View File

@ -0,0 +1,5 @@
{ ... }:
{
programs.nixvim.plugins.autoclose.enable = true;
}

View File

@ -1,7 +0,0 @@
{ ... }:
{
programs.nixvim.plugins.bufferline = {
enable = true;
};
}

View File

@ -12,6 +12,7 @@
./nvim-cmp.nix ./nvim-cmp.nix
./which-key.nix ./which-key.nix
./surround.nix ./surround.nix
./bufferline.nix ./indent-blankline.nix
./autoclose.nix
]; ];
} }

View File

@ -0,0 +1,7 @@
{ ... }:
{
programs.nixvim.plugins.indent-blankline = {
enable = true;
};
}