plugins/hurl: init

This commit is contained in:
Gaetan Lepage 2025-04-06 11:28:20 +02:00
parent eb719d80a8
commit f464541b18
2 changed files with 114 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "hurl";
packPathName = "hurl.nvim";
package = "hurl-nvim";
maintainers = [ lib.maintainers.GaetanLepage ];
settingsExample = {
debug = true;
mode = "popup";
env_file = [ "vars.env" ];
formatters = {
json = [ "jq" ];
html = [
"prettier"
"--parser"
"html"
];
xml = [
"tidy"
"-xml"
"-i"
"-q"
];
};
};
}