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

leetcode

URL: https://github.com/kawre/leetcode.nvim/

Maintainers: Fovir

plugins.leetcode.enable

Whether to enable leetcode.

Type: boolean

Default:

false

Example:

true

Declared by:

plugins.leetcode.package

The leetcode package to use.

Type: package

Default:

pkgs.vimPlugins.leetcode-nvim

Declared by:

plugins.leetcode.autoLoad

Whether to automatically load leetcode when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example:

false

Declared by:

plugins.leetcode.callSetup

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

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

Type: lua value

Default:

{ }

Example:

{
  lang = "rust";
  storage = {
    cache = lib.nixvim.mkRaw "vim.fn.stdpath('cache') .. '/leetcode'";
    home = "~/projects/leetcode";
  };
}

Declared by: