From 4af5cb648b0348eae161f8a0b996c117bfe9e856 Mon Sep 17 00:00:00 2001 From: xinyangli Date: Fri, 6 Dec 2024 19:24:18 +0800 Subject: [PATCH] blink,nvim-cmp: switch to blink from nvim-cmp --- config/blink.nix | 40 +++++++++++++++++++++++++++++ config/default.nix | 3 ++- config/nvim-cmp.nix | 61 --------------------------------------------- 3 files changed, 42 insertions(+), 62 deletions(-) create mode 100644 config/blink.nix delete mode 100644 config/nvim-cmp.nix diff --git a/config/blink.nix b/config/blink.nix new file mode 100644 index 0000000..d752b28 --- /dev/null +++ b/config/blink.nix @@ -0,0 +1,40 @@ +{ + + plugins = { + blink-cmp = { + enable = true; + settings = { + keymap = { + "" = [ + "scroll_documentation_up" + "fallback" + ]; + "" = [ + "scroll_documentation_down" + "fallback" + ]; + "" = [ + "select_next" + "fallback" + ]; + "" = [ + "select_prev" + "fallback" + ]; + "" = [ + "show" + "show_documentation" + "hide_documentation" + "fallback" + ]; + "" = [ + "select_and_accept" + "fallback" + ]; + }; + }; + }; + cmp-nvim-lsp.enable = true; + cmp.enable = true; + }; +} diff --git a/config/default.nix b/config/default.nix index 2ba6591..bd05fe0 100644 --- a/config/default.nix +++ b/config/default.nix @@ -1,6 +1,7 @@ { # Import all your configuration modules here imports = [ + ./blink.nix ./bufferline.nix ./comment.nix ./core.nix @@ -14,7 +15,7 @@ ./lsp ./lualine.nix ./neo-tree.nix - ./nvim-cmp.nix + # ./nvim-cmp.nix # ./project.nix ./rainbow-delimiters.nix ./telescope.nix diff --git a/config/nvim-cmp.nix b/config/nvim-cmp.nix deleted file mode 100644 index df8f3f1..0000000 --- a/config/nvim-cmp.nix +++ /dev/null @@ -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 = { - "" = "cmp.mapping(cmp.mapping.select_next_item(), {'i', 's'})"; - "" = "cmp.mapping.select_next_item()"; - "" = "cmp.mapping.select_prev_item()"; - "" = "cmp.mapping.abort()"; - "" = "cmp.mapping.scroll_docs(-4)"; - "" = "cmp.mapping.scroll_docs(4)"; - "" = "cmp.mapping.complete()"; - "" = "cmp.mapping.confirm({ select = true })"; - "" = "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 = "q"; - action = "q"; - options = { - noremap = true; - silent = true; - }; - } - { - mode = [ "n" ]; - key = "q"; - action = ""; - options = { - noremap = true; - silent = true; - }; - } - ]; -}