plugins.copilot-lua.enable
Whether to enable copilot.lua.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.copilot-lua.package
The copilot.lua package to use.
Type: package
Default:
pkgs.vimPlugins.copilot-lua
Declared by:
plugins.copilot-lua.copilotNodeCommand
Use this field to provide the path to a specific node version such as one installed by
nvm
.
Node.js version must be 16.x or newer.
Type: string
Default:
"/nix/store/i1a80zpva0bhmiam0qqrg6p6jawnxzk8-nodejs-18.20.4/bin/node"
Declared by:
plugins.copilot-lua.extraOptions
These attributes will be added to the table parameter for the setup function. Typically, it can override NixVim’s default settings.
Type: attribute set of anything
Default:
{ }
Declared by:
plugins.copilot-lua.filetypes
Specify filetypes for attaching copilot. Each value can be either a boolean or a lua function that returns a boolean.
Example:
{
markdown = true; # overrides default
terraform = false; # disallow specific filetype
sh.__raw = \'\'
function ()
if string.match(vim.fs.basename(vim.api.nvim_buf_get_name(0)), '^%.env.*') then
-- disable for .env files
return false
end
return true
end
\'\';
}
The key "*"
can be used to disable the default configuration.
Example:
{
javascript = true; # allow specific filetype
typescript = true; # allow specific filetype
"*" = false; # disable for all other filetypes and ignore default `filetypes`
}
Type: null or (attribute set of (boolean or raw lua code))
Default:
null
Plugin default:
{
"." = false;
cvs = false;
gitcommit = false;
gitrebase = false;
help = false;
hgcommit = false;
markdown = false;
svn = false;
yaml = false;
}
Declared by:
plugins.copilot-lua.serverOptsOverrides
Override copilot lsp client settings
.
The settings field is where you can set the values of the options defined in
https://github.com/zbirenbaum/copilot.lua/blob/master/SettingsOpts.md.
These options are specific to the copilot lsp and can be used to customize its behavior.
Ensure that the name
field is not overridden as is is used for efficiency reasons in
numerous checks to verify copilot is actually running.
See :h vim.lsp.start_client
for list of options.
Type: null or (attribute set of (anything or raw lua code))
Default:
null
Plugin default: { }
Example:
{
settings = {
advanced = {
inlineSuggestCount = 3;
listCount = 10;
};
};
trace = "verbose";
}
Declared by: