From 42678d9d1c2b5f0131f19429019e4af216b82977 Mon Sep 17 00:00:00 2001 From: Isshi0417 Date: Fri, 19 Jul 2024 15:37:03 +0900 Subject: [PATCH] Configure nvim plugins --- modules/home-manager/nixvim/plugins/bufferline.nix | 7 +++++++ modules/home-manager/nixvim/plugins/default.nix | 2 ++ modules/home-manager/nixvim/plugins/surround.nix | 5 +++++ 3 files changed, 14 insertions(+) create mode 100644 modules/home-manager/nixvim/plugins/bufferline.nix create mode 100644 modules/home-manager/nixvim/plugins/surround.nix 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; +}