try blink-cmp
Some checks are pending
Nix / build (push) Waiting to run
Nix / check-formatting (push) Waiting to run

This commit is contained in:
Osman Faruk Bayram 2025-04-15 00:30:37 +03:00
parent be66b5c4ec
commit 4325cb612a
2 changed files with 9 additions and 2 deletions

6
plugins/blink-cmp.nix Normal file
View file

@ -0,0 +1,6 @@
{
plugins.blink-cmp = {
settings = {
};
};
}

View file

@ -1,6 +1,7 @@
{
# settings of these plugins live in their respective files
imports = [
./blink-cmp.nix
./cmp.nix
./comment.nix
./gitsigns.nix
@ -21,10 +22,10 @@
treesitter.enable = true;
# completion plugin
cmp.enable = true;
cmp.enable = false;
# blink completion plugin (disabled in favor of cmp)
blink-cmp.enable = false;
blink-cmp.enable = true;
# Extensible UI for Neovim notifications and LSP progress messages.
fidget.enable = true;