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.
Explicitly set to true to call .setup(), even when settings is undefined.
Or set to false to disable calling .setup() at all.
Type: boolean
Default:
true when settings is explicitly defined, otherwise false.
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: