hurl
URL: https://github.com/jellydn/hurl.nvim/
Maintainers: Gaetan Lepage
A Neovim plugin designed to run HTTP requests directly from .hurl files.
plugins.hurl.enable
Whether to enable hurl.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.hurl.package
The hurl package to use.
Type: package
Default:
pkgs.vimPlugins.hurl-nvim
Declared by:
plugins.hurl.autoLoad
Whether to automatically load hurl when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.hurl.callSetup
Whether to generate the standard require('hurl').setup(...) call for this plugin.
By default, this follows the plugin’s built-in behavior. Set this to false
to disable the generated setup call, or to true to force it even when the
plugin would only call it conditionally.
Type: null or boolean
Default:
null
Declared by:
plugins.hurl.settings
Options provided to the require('hurl').setup function.
Type: lua value
Default:
{ }
Example:
{
debug = true;
env_file = [
"vars.env"
];
formatters = {
html = [
"prettier"
"--parser"
"html"
];
json = [
"jq"
];
xml = [
"tidy"
"-xml"
"-i"
"-q"
];
};
mode = "popup";
}
Declared by: