1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-18 00:12:48 +01:00
nixvim/plugins/by-name/hurl/default.nix
saygo-png c4b27080a6 treewide: infer packPathName menial work
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-09-27 23:49:59 +00:00

28 lines
541 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "hurl";
package = "hurl-nvim";
description = "A Neovim plugin designed to run HTTP requests directly from `.hurl` files.";
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"
];
};
};
}