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

neotab

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

Maintainers: Austin Horstman


Handles smarter tab completion and indentation behaviors.

plugins.neotab.enable

Whether to enable neotab.

Type: boolean

Default:

false

Example:

true

Declared by:

plugins.neotab.package

The neotab package to use.

Type: package

Default:

pkgs.vimPlugins.neotab-nvim

Declared by:

plugins.neotab.autoLoad

Whether to automatically load neotab when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example:

false

Declared by:

plugins.neotab.callSetup

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

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

Type: lua value

Default:

{ }

Example:

{
  behavior = "closing";
  exclude = [
    "markdown"
  ];
  smart_punctuators = {
    escape = {
      enabled = true;
      triggers = {
        "+" = {
          format = " %s ";
          ft = [
            "java"
          ];
          pairs = [
            {
              close = "\"";
              open = "\"";
            }
          ];
        };
      };
    };
  };
  tabkey = "";
}

Declared by: