config/modules/nixvim/plugins/blink.nix
2025-04-21 15:06:26 -07:00

40 lines
602 B
Nix

{
lib,
pkgs,
...
}: {
programs.nixvim = {
extraPackages = with pkgs; [
gh
wordnet
glab
];
extraPlugins = [
];
plugins = {
blink-cmp = {
enable = true;
lazyLoad.settings.event = [
"InsertEnter"
"CmdlineEnter"
];
settings = {
keymap.preset = "super-tab";
completion = {
ghost_test.enabled = true;
documentation = {
auto_show = true;
window.border = "rounded";
};
};
};
};
};
};
}