mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-05 15:19:15 +01:00
35 lines
1.6 KiB
Fennel
35 lines
1.6 KiB
Fennel
(local (cmp luasnip mztenv)
|
|
(values (require :cmp) (require :luasnip) (require :mzte_nv)))
|
|
|
|
(local sources {:buffer " "
|
|
:conjure " "
|
|
:crates " "
|
|
:luasnip " "
|
|
:nvim_lsp " "
|
|
:path " "
|
|
:treesitter " "})
|
|
|
|
(cmp.setup {:snippet {:expand #(luasnip.lsp_expand (. $1 :body))}
|
|
:mapping {:<C-b> (cmp.mapping (cmp.mapping.scroll_docs -4) [:i :c])
|
|
:<C-f> (cmp.mapping (cmp.mapping.scroll_docs 4) [:i :c])
|
|
:<C-Space> (cmp.mapping (cmp.mapping.complete) [:i :c])
|
|
:<Tab> (cmp.mapping mztenv.cmp.onTab [:i :s])
|
|
:<S-Tab> (cmp.mapping (cmp.mapping.select_prev_item))
|
|
:<CR> (cmp.mapping.confirm {:select true})}
|
|
:sources (cmp.config.sources (icollect [n _ (pairs sources)]
|
|
{:name n}))
|
|
:formatting {:format (fn [entry vim-item]
|
|
(tset vim-item :menu
|
|
(. sources entry.source.name))
|
|
vim-item)}})
|
|
|
|
(cmp.setup.cmdline "/" {:sources {:name :buffer}})
|
|
(cmp.setup.cmdline ":"
|
|
{:sources (cmp.config.sources [{:name :path}]
|
|
[{:name :cmdline}])})
|
|
|
|
(local signs {:Error " " :Warn " " :Hint " " :Info " "})
|
|
|
|
(each [k v (pairs signs)]
|
|
(let [hl (.. :DiagnosticSign k)]
|
|
(vim.fn.sign_define hl {:text v :texthl hl :numhl hl})))
|