Configure nvim plugins

This commit is contained in:
Isshi0417 2024-07-19 15:37:03 +09:00
parent decad32741
commit 42678d9d1c
3 changed files with 14 additions and 0 deletions

View File

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

View File

@ -11,5 +11,7 @@
./gitsigns.nix ./gitsigns.nix
./nvim-cmp.nix ./nvim-cmp.nix
./which-key.nix ./which-key.nix
./surround.nix
./bufferline.nix
]; ];
} }

View File

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