nix-community.nixvim/plugins/by-name/hurl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
571 B
Nix
Raw Normal View History

2025-04-06 11:28:20 +02:00
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "hurl";
packPathName = "hurl.nvim";
package = "hurl-nvim";
2025-06-18 02:42:47 +03:00
description = "A Neovim plugin designed to run HTTP requests directly from `.hurl` files.";
2025-04-06 11:28:20 +02:00
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"
];
};
};
}