Make language packages nicer

This commit is contained in:
Maciej 2020-07-24 13:07:16 +03:00
parent f1d3e7d6d7
commit 4b10beec8d
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
12 changed files with 82 additions and 28 deletions

View file

@ -1,7 +1,9 @@
;;; elisp -- summary
;;; languages/elisp -- summary
;;; Commentary:
;;; Code:
(require '05prog-mode "$HOME/.emacs.d/05prog-mode.el")
(defun activate-emacs-lisp-mode ()
"Goodies for editing Emacs files."
(set-indent 2) ;; Default indentation of 2 characters
@ -14,5 +16,5 @@
(add-hook 'emacs-lisp-mode-hook 'activate-emacs-lisp-mode)
(provide 'elisp)
(provide 'languages/elisp)
;;; elisp.el ends here