summaryrefslogtreecommitdiff
path: root/fnl/plugins/cmp.fnl
blob: f3c02116c32aa301462cf0f076d0757f7cc48029 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
;; 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])

(fn config []
  (let [cmp (require :cmp)
        lspkind (require :lspkind)]
    (lspkind.init)
    (cmp.setup {:snippet {:expand (lambda [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 200
                              :throttle 250
                              :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 "!"]}}]})))

{1 :hrsh7th/nvim-cmp : dependencies :event :InsertEnter : config}