config/modules/nixvim/plugins/blink.nix

41 lines
602 B
Nix
Raw Normal View History

2025-04-21 15:06:26 -07:00
{
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";
};
};
};
};
};
};
}