Files
nixos-config/modules/home-manager/base/editors/neovim/plugins/blink-cmp.nix
Christoph Schmatzler 7e219a4f79 up
2025-08-13 08:25:17 +02:00

18 lines
348 B
Nix

{
programs.nixvim.plugins.blink-cmp = {
enable = true;
settings = {
signature.enabled = true;
completion = {
accept = {
auto_brackets = {
enabled = true;
semantic_token_resolution.enabled = false;
};
};
documentation.auto_show = true;
};
};
};
}