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.callSetup
Whether to generate the standard require('codesettings').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.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: