Use parinfer instead of paredit
This commit is contained in:
parent
56e859cdde
commit
d151f86adb
2 changed files with 13 additions and 1 deletions
|
|
@ -446,8 +446,20 @@
|
||||||
(use-package ox-gfm
|
(use-package ox-gfm
|
||||||
:after org)
|
:after org)
|
||||||
|
|
||||||
|
(use-package parinfer-rust-mode
|
||||||
|
:hook (lisp-mode emacs-lisp-mode clojure-mode)
|
||||||
|
:init
|
||||||
|
;; https://github.com/justinbarclay/parinfer-rust-mode/issues/43#issuecomment-1054303553
|
||||||
|
(setq parinfer-rust-auto-download t))
|
||||||
|
|
||||||
(use-package paredit
|
(use-package paredit
|
||||||
:hook ((lisp-mode emacs-lisp-mode clojure-mode) . paredit-mode))
|
:disabled t
|
||||||
|
:hook ((lisp-mode emacs-lisp-mode clojure-mode) . paredit-mode)
|
||||||
|
:config
|
||||||
|
;; https://stackoverflow.com/a/60672602
|
||||||
|
(paredit-do-commands (spec keys _fn _examples) nil
|
||||||
|
(dolist (key keys)
|
||||||
|
(define-key paredit-mode-map (read-kbd-macro key) nil))))
|
||||||
|
|
||||||
(use-package pulsar
|
(use-package pulsar
|
||||||
:config
|
:config
|
||||||
|
|
|
||||||
BIN
.emacs.d/parinfer-rust/parinfer-rust-darwin.so
Normal file
BIN
.emacs.d/parinfer-rust/parinfer-rust-darwin.so
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue