This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-02-24
Channels
- # admin-announcements (1)
- # aleph (3)
- # announcements (4)
- # beginners (30)
- # boot (296)
- # cider (21)
- # cljsjs (2)
- # cljsrn (18)
- # clojure (124)
- # clojure-poland (23)
- # clojure-russia (4)
- # clojurescript (73)
- # core-async (58)
- # css (3)
- # datomic (31)
- # editors (4)
- # emacs (35)
- # euroclojure (3)
- # hoplon (104)
- # immutant (8)
- # jobs (3)
- # jobs-discuss (1)
- # keechma (1)
- # ldnclj (33)
- # leiningen (5)
- # liberator (1)
- # mount (20)
- # off-topic (2)
- # om (104)
- # onyx (54)
- # parinfer (80)
- # proton (1)
- # re-frame (59)
- # remote-jobs (1)
- # ring-swagger (9)
- # slack-help (15)
- # spacemacs (7)
- # yada (12)
what do people use for paredit stuff in spacemacs? I kind of like the evil-lispy state, but it's annoying to have to exit insert mode and go SPC k s
to slurp something. I'd rather have C-<something>
.. A sample config file would be much appreciated!
I use Smartparens (which map out thusly: https://github.com/Fuco1/.emacs.d/blob/master/files/smartparens.el).
@jstaffans: I call this in my config which adds the C-whatever bindings: (add-hook 'clojure-mode-hook #'paredit-mode)
you'll probably also want (add-hook 'emacs-lisp-mode-hook #'paredit-mode)
and any other lisps you use