nixos-config/home/afoucaultc/packages/neovim/plugins/blink-cmp.nix
2026-08-19 14:54:41 +02:00

19 lines
308 B
Nix

{ ... }:
{
programs.nixvim = {
plugins = {
blink-cmp = {
enable = true;
settings = {
keymap.preset = "default";
sources.default = [
"lsp"
"path"
"snippets"
"buffer"
];
};
};
};
};
}