dotfiles/mzte-nv/conf/lua/pluginconf/p-conjure.fnl

24 lines
793 B
Plaintext
Raw Normal View History

2023-03-07 00:01:16 +01:00
;; Blame conjure for this BS config
2023-03-28 00:39:38 +02:00
;; NOTE: this is ran before conjure initialization
;; Disable auto-attach
(tset vim :g "conjure#client_on_load" false)
2023-03-07 00:01:16 +01:00
(tset vim :g "conjure#mapping#prefix" :<F1>)
;; Only enable used clients
(tset vim :g "conjure#filetypes" [:clojure
2023-05-13 12:42:35 +02:00
:commonlisp
2023-03-07 00:01:16 +01:00
:fennel
:scheme
:lua
2023-05-13 12:42:35 +02:00
:lisp
2023-03-07 00:01:16 +01:00
:python])
2023-05-13 12:42:35 +02:00
2023-03-28 00:39:38 +02:00
(tset vim :g "conjure#filetype#rust" false)
(tset vim :g "conjure#filetype#racket" false)
2023-05-13 12:42:35 +02:00
(tset vim :g "conjure#filetype#commonlisp" "conjure.client.common-lisp.swank")
2023-03-07 00:01:16 +01:00
;; This has custom handling for compat with LSP
(tset vim :g "conjure#mapping#doc_word" false)