emacs/20elisp.el
Maciej Szlosarczyk 1a911716c0
Create new, a little bit better structured configuration
* Group configuration by package, and only then by language mode
* Slim down all the languages
2018-09-09 00:31:51 +03:00

8 lines
240 B
EmacsLisp

(add-hook 'emacs-lisp-mode-hook 'flymake-mode)
(defun activate-emacs-lisp-mode ()
"Goodies for editing emacs files."
(set-indent 2) ;; Default indentation of 2 characters
)
(add-hook 'emacs-lisp-mode-hook 'activate-emacs-lisp-mode)