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

14 lines
224 B
Nix

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