diff options
author | Soispha <soispha@vhack.eu> | 2024-03-28 11:04:20 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-03-28 11:04:20 +0100 |
commit | d9d00a3d1faeca9608f09a37f3f281cb987e87d9 (patch) | |
tree | 529c4702a899aa4d781a4a686bd4a25aa7a691c2 | |
parent | build(flake): Update (diff) | |
download | nixos-config-d9d00a3d1faeca9608f09a37f3f281cb987e87d9.tar.gz nixos-config-d9d00a3d1faeca9608f09a37f3f281cb987e87d9.zip |
refactor(hm/conf/nvim/plgs/comment-nvim): Update to new module layout
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/conf/nvim/plgs/comment-nvim/default.nix | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/hm/soispha/conf/nvim/plgs/comment-nvim/default.nix b/hm/soispha/conf/nvim/plgs/comment-nvim/default.nix index b0d405f3..2a73b8db 100644 --- a/hm/soispha/conf/nvim/plgs/comment-nvim/default.nix +++ b/hm/soispha/conf/nvim/plgs/comment-nvim/default.nix @@ -1,13 +1,14 @@ {...}: { programs.nixvim = { - plugins.comment-nvim = { + plugins.comment = { enable = true; - padding = true; - sticky = true; - mappings = { - basic = false; - extended = false; - extra = false; + settings = { + padding = true; + sticky = true; + mappings = { + basic = false; + extra = false; + }; }; }; keymaps = [ |