1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

endec: add module

Neovim encoder/decoder plugin for Base64, Base64URL, URL (percent
encoding)
This commit is contained in:
Austin Horstman 2025-09-16 16:51:07 -05:00
parent ff3a250bd0
commit 7f45eae65b
2 changed files with 67 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "endec";
packPathName = "endec.nvim";
package = "endec-nvim";
maintainers = [ lib.maintainers.khaneliman ];
settingsExample = {
keymaps = {
defaults = false;
encode_base64_inplace = "gB";
};
};
}