dotfiles

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 43084db82214c4c4708078ce6bf5c0961084dbcc
parent 10c79a748deabf45732c8f75c0ece679f8468143
Author: Yuval Langer <yuval.langer@gmail.com>
Date:   Sat, 11 Mar 2017 21:27:04 +0200

Add lisp-y things, mostly for HyLang.

Diffstat:
Memacs/myinit.org | 16++++++++++++++++
1 file changed, 16 insertions(+), 0 deletions(-)

diff --git a/emacs/myinit.org b/emacs/myinit.org @@ -215,6 +215,13 @@ Org bullets makes things look pretty. #+END_SRC ** Programming modes + +#+BEGIN_SRC emacs-lisp + (req-package rainbow-delimiters + :config + (add-hook 'prog-mode-hook #'rainbow-delimiters-mode)) +#+END_SRC + *** kivy-mode #+BEGIN_SRC emacs-lisp @@ -285,6 +292,15 @@ Org bullets makes things look pretty. :require markdown-mode) #+END_SRC +**** hylang + +#+BEGIN_SRC emacs-lisp + (req-package hy-mode + :config + (add-hook 'hy-mode-hook 'paredit-mode) + (add-hook 'hy-mode-hook #'smartparens-strict-mode) + (add-hook 'hy-mode-hook #'rainbow-delimiters-mode)) +#+END_SRC **** Customize