mirror of
https://github.com/larstvei/dot-emacs.git
synced 2024-11-26 07:28:31 +00:00
Fix Clojure setup
This commit is contained in:
parent
ea9ca15769
commit
7b0b5372e3
20
init.org
20
init.org
@ -926,19 +926,6 @@
|
|||||||
(add-hook 'lisp-interaction-mode-hook 'turn-on-eldoc-mode)
|
(add-hook 'lisp-interaction-mode-hook 'turn-on-eldoc-mode)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
*** Clojure
|
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(add-hook 'cider-repl-mode-hook (lambda () (local-set-key (kbd "C-l") 'cider-repl-clear-buffer)))
|
|
||||||
#+END_SRC
|
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(setq cider-cljs-lein-repl
|
|
||||||
"(do (require 'figwheel-sidecar.repl-api)
|
|
||||||
(figwheel-sidecar.repl-api/start-figwheel!)
|
|
||||||
(figwheel-sidecar.repl-api/cljs-repl))")
|
|
||||||
#+END_SRC
|
|
||||||
|
|
||||||
*** Common lisp
|
*** Common lisp
|
||||||
|
|
||||||
I use [[http://www.common-lisp.net/project/slime/][Slime]] along with =lisp-mode= to edit Common Lisp code. Slime
|
I use [[http://www.common-lisp.net/project/slime/][Slime]] along with =lisp-mode= to edit Common Lisp code. Slime
|
||||||
@ -1304,6 +1291,13 @@
|
|||||||
(define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)
|
(define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
** Bindings for [[https://github.com/clojure-emacs/cider][Cider]]
|
||||||
|
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(with-eval-after-load 'cider
|
||||||
|
(define-key cider-repl-mode-map (kbd "C-l") 'cider-repl-clear-buffer))
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
** Bindings for built-ins
|
** Bindings for built-ins
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
Loading…
Reference in New Issue
Block a user