blink,nvim-cmp: switch to blink from nvim-cmp

This commit is contained in:
xinyangli 2024-12-06 19:24:18 +08:00
parent a3709a8979
commit 4af5cb648b
Signed by: xin
SSH key fingerprint: SHA256:UU5pRTl7NiLFJbWJZa+snLylZSXIz5rgHmwjzv8v4oE
3 changed files with 42 additions and 62 deletions

40
config/blink.nix Normal file
View file

@ -0,0 +1,40 @@
{
plugins = {
blink-cmp = {
enable = true;
settings = {
keymap = {
"<C-p>" = [
"scroll_documentation_up"
"fallback"
];
"<C-n>" = [
"scroll_documentation_down"
"fallback"
];
"<C-j>" = [
"select_next"
"fallback"
];
"<C-k>" = [
"select_prev"
"fallback"
];
"<C-space>" = [
"show"
"show_documentation"
"hide_documentation"
"fallback"
];
"<Tab>" = [
"select_and_accept"
"fallback"
];
};
};
};
cmp-nvim-lsp.enable = true;
cmp.enable = true;
};
}

View file

@ -1,6 +1,7 @@
{ {
# Import all your configuration modules here # Import all your configuration modules here
imports = [ imports = [
./blink.nix
./bufferline.nix ./bufferline.nix
./comment.nix ./comment.nix
./core.nix ./core.nix
@ -14,7 +15,7 @@
./lsp ./lsp
./lualine.nix ./lualine.nix
./neo-tree.nix ./neo-tree.nix
./nvim-cmp.nix # ./nvim-cmp.nix
# ./project.nix # ./project.nix
./rainbow-delimiters.nix ./rainbow-delimiters.nix
./telescope.nix ./telescope.nix

View file

@ -1,61 +0,0 @@
{
plugins = {
cmp = {
enable = true;
settings = {
sources = [
{ name = "nvim_lsp"; }
{
name = "buffer"; # text within current buffer
option.get_bufnrs.__raw = "vim.api.nvim_list_bufs";
keywordLength = 3;
}
{
name = "path"; # file system paths
keywordLength = 3;
}
{
name = "luasnip"; # snippets
keywordLength = 3;
}
];
mapping = {
"<Tab>" = "cmp.mapping(cmp.mapping.select_next_item(), {'i', 's'})";
"<C-j>" = "cmp.mapping.select_next_item()";
"<C-k>" = "cmp.mapping.select_prev_item()";
"<C-e>" = "cmp.mapping.abort()";
"<C-b>" = "cmp.mapping.scroll_docs(-4)";
"<C-f>" = "cmp.mapping.scroll_docs(4)";
"<C-Space>" = "cmp.mapping.complete()";
"<CR>" = "cmp.mapping.confirm({ select = true })";
"<S-CR>" = "cmp.mapping.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = true })";
};
};
};
cmp-nvim-lsp.enable = true;
cmp-path.enable = true;
cmp-buffer.enable = true;
};
keymaps = [
# Need to map macro recording to another key due to:
# https://github.com/hrsh7th/nvim-cmp/issues/1692
{
mode = [ "n" ];
key = "<leader>q";
action = "q";
options = {
noremap = true;
silent = true;
};
}
{
mode = [ "n" ];
key = "q";
action = "<Nop>";
options = {
noremap = true;
silent = true;
};
}
];
}