Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

justice

URL: https://github.com/chrisgrieser/nvim-justice/

Maintainers: Austin Horstman


Alternative task runner for just files using Tree-sitter completion.

plugins.justice.enable

Whether to enable justice.

Type: boolean

Default:

false

Example:

true

Declared by:

plugins.justice.package

The justice package to use.

Type: package

Default:

pkgs.vimPlugins.nvim-justice

Declared by:

plugins.justice.autoLoad

Whether to automatically load justice when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example:

false

Declared by:

plugins.justice.callSetup

Whether to generate the standard require('justice').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.justice.settings

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

Type: lua value

Default:

{ }

Example:

{
  recipeModes = {
    streaming = {
      comment = [
        "streaming"
        "curl"
        "watch"
      ];
    };
  };
  terminal = {
    height = 15;
  };
  window = {
    border = "single";
    recipeCommentMaxLen = 0;
  };
}

Declared by: