hurl

URL: https://github.com/jellydn/hurl.nvim/

Maintainers: Gaetan Lepage

plugins.hurl.enable

Whether to enable hurl.nvim.

Type: boolean

Default: false

Example: true

Declared by:

plugins.hurl.package

The hurl.nvim package to use.

Type: package

Default: pkgs.vimPlugins.hurl-nvim

Declared by:

plugins.hurl.autoLoad

Whether to automatically load hurl.nvim when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.hurl.settings

Options provided to the require('hurl').setup function.

Type: attribute set of anything

Default: { }

Example:

{
  debug = true;
  env_file = [
    "vars.env"
  ];
  formatters = {
    html = [
      "prettier"
      "--parser"
      "html"
    ];
    json = [
      "jq"
    ];
    xml = [
      "tidy"
      "-xml"
      "-i"
      "-q"
    ];
  };
  mode = "popup";
}

Declared by: