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

claudecode

URL: https://github.com/coder/claudecode.nvim/

Maintainers: Austin Horstman


A local AI coding helper inspired by copilot workflows.

plugins.claudecode.enable

Whether to enable claudecode.

Type: boolean

Default:

false

Example:

true

Declared by:

plugins.claudecode.package

The claudecode package to use.

Type: package

Default:

pkgs.vimPlugins.claudecode-nvim

Declared by:

plugins.claudecode.autoLoad

Whether to automatically load claudecode when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example:

false

Declared by:

plugins.claudecode.callSetup

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

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

Type: lua value

Default:

{ }

Example:

{
  diff_opts = {
    layout = "horizontal";
    open_in_new_tab = true;
  };
  focus_after_send = true;
  log_level = "debug";
  port_range = {
    max = 12100;
    min = 12000;
  };
  terminal = {
    git_repo_cwd = true;
    provider = "external";
    provider_opts = {
      external_terminal_cmd = "alacritty -e %s";
    };
    split_side = "left";
  };
}

Declared by: