add stuff
This commit is contained in:
+7
-1
@@ -98,7 +98,13 @@
|
||||
(keymap :n "gD" vim.lsp.buf.declaration opts)
|
||||
(keymap :n "gr" vim.lsp.buf.references opts)
|
||||
(keymap :n "gi" vim.lsp.buf.implementation opts)
|
||||
(keymap :n "K" vim.lsp.buf.hover opts)
|
||||
(keymap :n "K"
|
||||
(fn []
|
||||
(if (= vim.bo.filetype "clojure")
|
||||
(let [clje-hover (require :clje.hover)]
|
||||
(clje-hover.hover))
|
||||
(vim.lsp.buf.hover)))
|
||||
opts)
|
||||
(keymap :n "<leader>rn" vim.lsp.buf.rename opts)
|
||||
(keymap :n "<leader>ca" vim.lsp.buf.code_action opts)
|
||||
(keymap :n "[d" (fn [] (vim.diagnostic.jump {:count -1})) opts)
|
||||
|
||||
Reference in New Issue
Block a user