Change directory lisp/ to modules/

FS #2
This commit is contained in:
Jesús
2019-01-22 15:45:41 -05:00
parent d0f44d8546
commit ced0fe8f9e
44 changed files with 366 additions and 68 deletions

24
modules/init-html.el Normal file
View File

@@ -0,0 +1,24 @@
;;; init-html.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
;;;;;;;;;;;;;;;;;;;;;;;;;
;; HTML Mode
;;;;;;;;;;;;;;;;;;;;;;;;;
(add-hook 'html-mode-hook
(lambda ()
;; Default indentation is usually 2 spaces, changing to 4.
(set (make-local-variable 'sgml-basic-offset) 4)))
;; highlight-indent-guides-mode
(add-hook 'html-mode-hook 'highlight-indent-guides-mode)
(provide 'init-html)
;; Local Variables:
;; byte-compile-warnings: (not free-vars)
;; End:
;;; init-html.el ends here