From a6776b69d5082ab75ba6b1373b7cae6f4884f7b0 Mon Sep 17 00:00:00 2001 From: sefidel Date: Fri, 20 Dec 2024 00:22:41 +0900 Subject: feat(pack)!: replace nvim-cmp with blink.cmp --- fnl/nvrc/packs/blink-cmp.fnl | 65 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 fnl/nvrc/packs/blink-cmp.fnl (limited to 'fnl/nvrc/packs/blink-cmp.fnl') diff --git a/fnl/nvrc/packs/blink-cmp.fnl b/fnl/nvrc/packs/blink-cmp.fnl new file mode 100644 index 0000000..549eb6e --- /dev/null +++ b/fnl/nvrc/packs/blink-cmp.fnl @@ -0,0 +1,65 @@ +(local {: setup} (require :blink.cmp)) + +(setup {:keymap {: [(fn [cmp] + (if (cmp.snippet_active) (cmp.accept) + (cmp.select_next))) "fallback"] + : ["select_prev" "snippet_backward" "fallback"] + : ["accept" "fallback"] + : ["cancel" "fallback"] + : ["show" "show_documentation" "hide_documentation"] + : ["hide" "fallback"] + : ["scroll_documentation_down" "fallback"] + : ["scroll_documentation_up" "fallback"] + : [(fn [cmp] (cmp.accept {:index 1}))] + : [(fn [cmp] (cmp.accept {:index 2}))] + : [(fn [cmp] (cmp.accept {:index 3}))] + : [(fn [cmp] (cmp.accept {:index 4}))] + : [(fn [cmp] (cmp.accept {:index 5}))] + : [(fn [cmp] (cmp.accept {:index 6}))] + : [(fn [cmp] (cmp.accept {:index 7}))] + : [(fn [cmp] (cmp.accept {:index 8}))] + : [(fn [cmp] (cmp.accept {:index 9}))] + : [(fn [cmp] (cmp.accept {:index 10}))] + : ["select_next" "fallback"] + : ["select_prev" "fallback"] + : ["select_prev" "fallback"] + : ["select_next" "fallback"]} + :appearance {:kind_icons {:Text "(t)" + :Method "(f)" + :Function "(f)" + :Constructor "(C)" + :Field "(s)" + :Variable "(v)" + :Property "(p)" + :Class "(C)" + :Interface "(I)" + :Struct "(S)" + :Module "(M)" + :Unit "(U)" + :Value "(V)" + :Enum "(e)" + :EnumMember "(e)" + :Keyword "(k)" + :Constant "(c)" + :Snippet "(x)" + :Color "(t)" + :File "(t)" + :Reference "(*)" + :Folder "(t)" + :Event "(e)" + :Operator "(o)" + :TypeParameter "(k)"}} + :sources {:default [:lsp :path :snippets :buffer]} + :signature {:enabled true} ; experimental signature support + :fuzzy {:prebuilt_binaries {:download false}} + :completion {:list {:selection :auto_insert} + :menu {:draw {:treesitter [:lsp] + :columns [ + {1 :item_idx} + {1 :label 2 :label_description :gap 1} + {1 :kind_icon :gap 1 2 :kind} + {1 :source_name}] + :components {:item_idx {:text (fn [ctx] (tostring ctx.idx)) + :highlight :BlinkCmpItemIdx} + :label_description {:width {:max 10}} + :source_name {:text (fn [ctx] (.. "[" ctx.source_name "]"))}}}}}}) -- cgit 1.4.1