dotfiles/mzte-nv/conf/lua/pluginconf/p-conjure.fnl
LordMZTE b9a07f3329
disable conjure for racket
racket-langserver should handle it instead
2023-11-12 17:01:06 +01:00

24 lines
793 B
Fennel

;; Blame conjure for this BS config
;; NOTE: this is ran before conjure initialization
;; Disable auto-attach
(tset vim :g "conjure#client_on_load" false)
(tset vim :g "conjure#mapping#prefix" :<F1>)
;; Only enable used clients
(tset vim :g "conjure#filetypes" [:clojure
:commonlisp
:fennel
:scheme
:lua
:lisp
:python])
(tset vim :g "conjure#filetype#rust" false)
(tset vim :g "conjure#filetype#racket" false)
(tset vim :g "conjure#filetype#commonlisp" "conjure.client.common-lisp.swank")
;; This has custom handling for compat with LSP
(tset vim :g "conjure#mapping#doc_word" false)