summaryrefslogtreecommitdiff
path: root/fnl/plugins/cmp.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2024-12-19 21:57:03 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2024-12-19 21:57:03 +0100
commit7cfec10601bd2f611651a86175240d2394a204ff (patch)
tree6f3890328c418ddec12193eaad46acbe9f0c4c11 /fnl/plugins/cmp.fnl
parenta355b32ec773d6fd830e1e18362d9e9de7ed5b75 (diff)
Add blink.cmp
Diffstat (limited to 'fnl/plugins/cmp.fnl')
-rw-r--r--fnl/plugins/cmp.fnl71
1 files changed, 9 insertions, 62 deletions
diff --git a/fnl/plugins/cmp.fnl b/fnl/plugins/cmp.fnl
index 6375967..9ba119f 100644
--- a/fnl/plugins/cmp.fnl
+++ b/fnl/plugins/cmp.fnl
@@ -1,66 +1,13 @@
;; Configuration for completion plugin.
-(local dependencies [:L3MON4D3/LuaSnip
- :f3fora/cmp-spell
- :hrsh7th/cmp-buffer
- :hrsh7th/cmp-cmdline
- :hrsh7th/cmp-path
- :onsails/lspkind.nvim
- :saadparwaiz1/cmp_luasnip])
+(local opts
+ {:keymap {:preset :default}
+ :appearance {:use_nvim_cmp_as_default true :nerd_font_variant :mono}
+ :sources {:default {:lsp :path :snippets :buffer}}
+ :menu {:border :single :scrollbar false}
+ :documentation {:window {:border :single :scrollbar false}}
+ :signature {:enabled true :window {:border :single :scrollbar false}}})
-(λ config []
- (let [cmp (require :cmp)
- lspkind (require :lspkind)]
- (lspkind.init)
- (cmp.setup {:snippet {:expand (λ [args]
- (let [luasnip (require :luasnip)]
- (luasnip.lsp_expand args.body)))}
- :completion {:completopt "menu,menuone,noinsert"}
- :mapping (cmp.mapping.preset.insert {:<c-n> (cmp.mapping.select_prev_item {:behavior cmp.SelectBehavior.Insert})
- :<c-e> (cmp.mapping.select_next_item {:behavior cmp.SelectBehavior.Insert})
- :<c-y> (cmp.mapping (cmp.mapping.confirm {:behavior cmp.SelectBehavior.Insert
- :select true}
- [:i
- :c]))})
- :sources [{:name :nvim_lsp
- :group_index 1
- :keyword_length 3
- :max_item_count 32}
- {:name :buffer :group_index 2}
- {:name :spell :group_index 3}
- {:name :nvim_lua}
- {:name :luasnip :group_index 1 :keyword_length 1}
- {:name :path :keyword_length 6}]
- :performance {:debounce 60
- :throttle 50
- :fetching_timeout 80
- :max_view_entries 16}})
- (cmp.setup.filetype [:org :orgagenda]
- {:sources [{:name :orgmode :group_index 1}
- {:name :buffer :group_index 2}
- {:name :luasnip
- :group_index 1
- :keyword_length 1}
- {:name :spell :group_index 3}]})
- (cmp.setup.filetype [:sql]
- {:sources [{:name :vim-dadbod-completion
- :group_index 1}
- {:name :buffer :group_index 2}
- {:name :luasnip
- :group_index 1
- :keyword_length 1}
- {:name :spell :group_index 3}]})
- (cmp.setup.cmdline "/"
- {:mapping (cmp.mapping.preset.cmdline)
- :sources [{:name :buffer}]})
- (cmp.setup.cmdline ":"
- {:mapping (cmp.mapping.preset.cmdline)
- :sources [{:name :path}
- {:name :cmdline
- :option {:ignore_cmds [:Man "!"]}}]})))
+(local dependencies [:rafamadriz/friendly-snippets])
-{1 :iguanacucumber/magazine.nvim
- :name :nvim-cmp
- : dependencies
- :event :InsertEnter
- : config}
+{1 :saghen/blink.cmp :version :v0.* : dependencies :event :InsertEnter : opts}