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

codesettings

URL: https://github.com/mrjones2014/codesettings.nvim/

Maintainers: Gaetan Lepage

plugins.codesettings.enable

Whether to enable codesettings.

Type: boolean

Default: false

Example: true

Declared by:

plugins.codesettings.package

The codesettings package to use.

Type: package

Default: pkgs.vimPlugins.codesettings-nvim

Declared by:

plugins.codesettings.autoLoad

Whether to automatically load codesettings when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.codesettings.settings

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

Type: lua value

Default: { }

Example:

{
  config_file_paths = [
    ".vscode/settings.json"
    "codesettings.json"
    "lspsettings.json"
    ".codesettings.json"
    ".lspsettings.json"
    ".nvim/codesettings.json"
    ".nvim/lspsettings.json"
  ];
  default_merge_opts = {
    list_behavior = "prepend";
  };
  jsonls_integration = true;
}

Declared by: