From 19f0057503c5cc51831c940c1580913c29ed908d Mon Sep 17 00:00:00 2001 From: Sam Date: Sat, 27 Jul 2024 11:23:14 +0100 Subject: [PATCH] add comment plugin to nvim --- home/common/core/nixvim/plugins/comment.nix | 5 +++++ home/common/core/nixvim/plugins/default.nix | 1 + 2 files changed, 6 insertions(+) create mode 100644 home/common/core/nixvim/plugins/comment.nix diff --git a/home/common/core/nixvim/plugins/comment.nix b/home/common/core/nixvim/plugins/comment.nix new file mode 100644 index 0000000..b55ef26 --- /dev/null +++ b/home/common/core/nixvim/plugins/comment.nix @@ -0,0 +1,5 @@ +{ + programs.nixvim.plugins.comment = { + enable = true; + }; +} diff --git a/home/common/core/nixvim/plugins/default.nix b/home/common/core/nixvim/plugins/default.nix index a87d10c..4b31673 100644 --- a/home/common/core/nixvim/plugins/default.nix +++ b/home/common/core/nixvim/plugins/default.nix @@ -20,6 +20,7 @@ in ./fold.nix ./todo-comments.nix ./oil.nix + ./comment.nix ]; # Load Plugins that aren't provided as modules by nixvim