Run `nix fmt` at the root of the repository to format all files. I've done this on my fork and this will help me merge your changes later without having to deal with un-formatted files.
21 lines
339 B
Nix
21 lines
339 B
Nix
{
|
|
plugins.copilot-cmp = {
|
|
enable = true;
|
|
};
|
|
plugins.copilot-lua = {
|
|
enable = true;
|
|
suggestion = {
|
|
enabled = false;
|
|
};
|
|
panel = {
|
|
enabled = false;
|
|
};
|
|
};
|
|
|
|
extraConfigLua = ''
|
|
require("copilot").setup({
|
|
suggestion = { enabled = false },
|
|
panel = { enabled = false },
|
|
})
|
|
'';
|
|
}
|