nixvim-config/config/plugins/cmp/copilot.nix

15 lines
246 B
Nix

{...}: {
plugins.copilot-vim = {
enable = true;
settings = {
filetypes = {
"*" = false;
"nix" = true;
};
workspace_folders = [
"/home/sajenim/.repositories/dotfiles.nix/"
];
};
};
}