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