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:
parent
ff3a250bd0
commit
7f45eae65b
2 changed files with 67 additions and 0 deletions
15
plugins/by-name/endec/default.nix
Normal file
15
plugins/by-name/endec/default.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue