diff --git a/modules/home-manager/nixvim/plugins/bufferline.nix b/modules/home-manager/nixvim/plugins/bufferline.nix new file mode 100644 index 0000000..c0eade1 --- /dev/null +++ b/modules/home-manager/nixvim/plugins/bufferline.nix @@ -0,0 +1,7 @@ +{ ... }: + +{ + programs.nixvim.plugins.bufferline = { + enable = true; + }; +} diff --git a/modules/home-manager/nixvim/plugins/default.nix b/modules/home-manager/nixvim/plugins/default.nix index 15b22ad..2dc5d7e 100644 --- a/modules/home-manager/nixvim/plugins/default.nix +++ b/modules/home-manager/nixvim/plugins/default.nix @@ -11,5 +11,7 @@ ./gitsigns.nix ./nvim-cmp.nix ./which-key.nix + ./surround.nix + ./bufferline.nix ]; } diff --git a/modules/home-manager/nixvim/plugins/surround.nix b/modules/home-manager/nixvim/plugins/surround.nix new file mode 100644 index 0000000..31d4faa --- /dev/null +++ b/modules/home-manager/nixvim/plugins/surround.nix @@ -0,0 +1,5 @@ +{ ... }: + +{ + programs.nixvim.plugins.surround.enable = true; +}