Skip to content

Commit

Permalink
blink: add blink-cmp-dictionary
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Feb 4, 2025
1 parent 6f77eb2 commit b6c4070
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions modules/nixvim/plugins/blink/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,18 @@
...
}:
{
extraPackages = [ pkgs.gh ];
extraPackages = with pkgs; [
# blink-cmp-git
gh
# blink-cmp-dictionary
wordnet
];
extraPlugins = lib.mkIf config.plugins.blink-cmp.enable (
with pkgs.vimPlugins;
[
blink-cmp-spell
blink-cmp-dictionary
blink-cmp-git
blink-cmp-spell
blink-copilot
blink-emoji-nvim
blink-ripgrep-nvim
Expand Down Expand Up @@ -120,6 +126,7 @@
"snippets"
# Community
"copilot"
"dictionary"
"emoji"
"git"
"spell"
Expand All @@ -146,6 +153,11 @@
async = true;
score_offset = 100;
};
dictionary = {
name = "Dict";
module = "blink-cmp-dictionary";
min_keyword_length = 3;
};
emoji = {
name = "Emoji";
module = "blink-emoji";
Expand Down

0 comments on commit b6c4070

Please sign in to comment.