add stuff

This commit is contained in:
2026-04-30 10:27:39 -04:00
parent 646a6dca78
commit 409c5ee384
6 changed files with 295 additions and 9 deletions
+7 -1
View File
@@ -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)
+1 -1
View File
@@ -11,7 +11,7 @@
;; ── Configuration ────────────────────────────────────────────────
;; Change this single flag to flip the default for all sexp filetypes.
(local default-enabled true)
(local default-enabled false)
;; ── Implementation ───────────────────────────────────────────────