Add highlight-numbers and highlight-quoted modes

This commit is contained in:
Henrik Lissner 2016-04-16 00:44:18 -04:00
parent 843bc3e00d
commit 4572165f6c
3 changed files with 8 additions and 1 deletions

View file

@ -1,10 +1,13 @@
;;; module-lisp --- all things lisp
(add-hook! emacs-lisp-mode '(turn-on-eldoc-mode flycheck-mode))
(add-hook! emacs-lisp-mode
'(turn-on-eldoc-mode flycheck-mode highlight-numbers-mode highlight-quoted-mode))
;; Pop-up REPL
(define-repl! emacs-lisp-mode narf/elisp-inf-ielm)
(use-package highlight-quoted :commands (highlight-quoted-mode))
;; 'Emacs Lisp' is too long [pedantry intensifies]
(defadvice emacs-lisp-mode (after emacs-lisp-mode-rename-modeline activate)
(setq mode-name "Elisp"))