9 lines
262 B
EmacsLisp
9 lines
262 B
EmacsLisp
|
; Lisp mode customizations
|
||
|
|
||
|
;; In the case that highlight parentheses is not present we don't want it to fail
|
||
|
(add-hook 'emacs-lisp-mode-hook
|
||
|
(lambda ()
|
||
|
(company-mode)
|
||
|
;(highlight-parentheses-mode +1)
|
||
|
(eldoc-mode)))
|