add blink sources

This commit is contained in:
Osman Faruk Bayram 2025-08-18 17:24:08 +03:00
parent b5d81a5a69
commit a13d094773

View file

@ -1,6 +1,34 @@
{ {
plugins.blink-cmp = { plugins.blink-cmp = {
settings = { settings = {
sources = {
default = [
"lsp"
"path"
"luasnip"
"buffer"
"copilot"
];
providers = {
copilot = {
async = true;
module = "blink-copilot";
name = "copilot";
score_offset = 100;
# Optional configurations
opts = {
max_completions = 3;
max_attempts = 4;
kind = "Copilot";
debounce = 750;
auto_refresh = {
backward = true;
forward = true;
};
};
};
};
};
}; };
}; };
} }