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

just

URL: https://github.com/nxuv/just.nvim/

Maintainers: Austin Horstman


Lightweight task runner for just recipe files in Neovim.

plugins.just.enable

Whether to enable just.

Type: boolean

Default:

false

Example:

true

Declared by:

plugins.just.package

The just package to use.

Type: package

Default:

pkgs.vimPlugins.just-nvim

Declared by:

plugins.just.autoLoad

Whether to automatically load just when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example:

false

Declared by:

plugins.just.callSetup

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

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

Type: lua value

Default:

{ }

Example:

{
  fidget_message_limit = 64;
  open_qf_on_run = false;
  play_sound = true;
  telescope_borders = {
    preview = [
      " "
      " "
      " "
      " "
      " "
      " "
      " "
      " "
    ];
    prompt = [
      " "
      " "
      " "
      " "
      " "
      " "
      " "
      " "
    ];
    results = [
      " "
      " "
      " "
      " "
      " "
      " "
      " "
      " "
    ];
  };
}

Declared by: