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/cmp.fnl | 79 -------------------------------------------------- 1 file changed, 79 deletions(-) delete mode 100644 fnl/nvrc/packs/cmp.fnl (limited to 'fnl/nvrc/packs/cmp.fnl') diff --git a/fnl/nvrc/packs/cmp.fnl b/fnl/nvrc/packs/cmp.fnl deleted file mode 100644 index 6fea0d1..0000000 --- a/fnl/nvrc/packs/cmp.fnl +++ /dev/null @@ -1,79 +0,0 @@ -(import-macros {: set!} :nvrc.macro.set) -(local {: setup - : mapping - :config {: compare : disable} - : ConfirmBehavior - : visible - : select_next_item - : select_prev_item} (require :cmp)) -(local under-compare (require :cmp-under-comparator)) -(local clangd-score (require :clangd_extensions.cmp_scores)) - -(set! completeopt "menuone,noselect") - -(local icons {:Text "(t)" - :Method "(m)" - :Function "(f)" - :Constructor "(C)" - :Field "(s)" - :Variable "(v)" - :Class "(C)" - :Interface "(i)" - :Module "(m)" - :Property "(p)" - :Unit "(u)" - :Value "(v)" - :Enum "(e)" - :EnumMember "(e)" - :Keyword "(k)" - :Snippet "(S)" - :Color "(R)" - :Reference "(r)" - :Constant "(c)" - :Struct "(s)" - :Event "(e)" - :Operator "(o)" - :TypeParameter "(T)" - :File "(F)" - :Folder "(F)" - }) - -(setup {:snippet {:expand (fn [args] - (vim.snippet.expand args.body))} - :formatting {:format (fn [entry vim-item] - (set vim-item.kind - (string.format "%s %s" - (. icons vim-item.kind) - vim-item.kind)) - (set vim-item.menu - (. {:nvim_lsp "[LSP]"} - entry.source.name)) - vim-item)} - :mapping {: (mapping.select_prev_item) - : (mapping.select_next_item) - : (mapping.scroll_docs (- 4)) - : (mapping.scroll_docs 4) - : (mapping.complete) - : (mapping.close) - : disable - : disable - : (mapping (mapping.confirm {:behavior ConfirmBehavior.Replace - :select false}) [:i :c]) - : (mapping {:i (fn [fallback] - (if (visible) (select_next_item) - (vim.snippet.active {:direction 1}) (vim.snippet.jump 1) - (fallback)))}) - : (mapping {:i (fn [fallback] - (if (visible) (select_next_item) - (vim.snippet.active {:direction -1}) (vim.snippet.jump -1) - (fallback)))})} - :sources [{:name :nvim_lsp}] - :sorting {:comparators [compare.offset - compare.exact - clangd-score - compare.score - under-compare.under - compare.kind - compare.sort_text - compare.length - compare.order]}}) -- cgit 1.4.1