Files
nvim/config/modules/plugins/blink-cmp.nix

55 lines
1.0 KiB
Nix
Raw Normal View History

2025-10-23 19:50:10 +03:00
{
2025-10-24 10:35:01 +03:00
plugins.blink-cmp = {
enable = true;
settings = {
appearance = {
nerd_font_variant = "normal";
use_nvim_cmp_as_default = true;
};
completion = {
accept = {
auto_brackets = {
enabled = true;
semantic_token_resolution = {
enabled = false;
};
};
};
trigger = {
show_on_keyword = true;
show_on_trigger_character = true;
};
documentation = {
auto_show = true;
auto_show_delay_ms = 500;
};
menu = {
auto_show = true;
};
};
keymap = {
preset = "default";
};
signature = {
enabled = true;
};
sources = {
default = [
"lsp"
"buffer"
"snippets"
"path"
];
providers = {
buffer = {
score_offset = -7;
};
lsp = {
fallbacks = [ ];
};
};
};
};
};
2025-10-23 19:50:10 +03:00
}