I added YAML mode.
This commit is contained in:
parent
525c67bf52
commit
ad0627eaba
2 changed files with 12 additions and 2 deletions
6
init.el
6
init.el
|
@ -7,13 +7,15 @@
|
||||||
(file-expand-wildcards "~/.emacs.d/lisp.d/*.el" t)
|
(file-expand-wildcards "~/.emacs.d/lisp.d/*.el" t)
|
||||||
)
|
)
|
||||||
|
|
||||||
;END;
|
|
||||||
(custom-set-variables
|
(custom-set-variables
|
||||||
;; custom-set-variables was added by Custom.
|
;; custom-set-variables was added by Custom.
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
;; Your init file should contain only one such instance.
|
;; Your init file should contain only one such instance.
|
||||||
;; If there is more than one, they won't work right.
|
;; If there is more than one, they won't work right.
|
||||||
)
|
'(org-agenda-files (quote (
|
||||||
|
"~/Documents/planning/categories/personal.org"
|
||||||
|
"~/Documents/planning/categories/travel.org"
|
||||||
|
))))
|
||||||
(custom-set-faces
|
(custom-set-faces
|
||||||
;; custom-set-faces was added by Custom.
|
;; custom-set-faces was added by Custom.
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
|
8
lisp.d/yaml-mode.el
Normal file
8
lisp.d/yaml-mode.el
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
;________________________________________
|
||||||
|
; YAML mode
|
||||||
|
;
|
||||||
|
|
||||||
|
(add-to-list 'load-path
|
||||||
|
(expand-file-name "~/Software/Emacs/Lisp/yaml-mode/current"))
|
||||||
|
(require 'yaml-mode)
|
||||||
|
(add-to-list 'auto-mode-alist '("\\.yml$" . yaml-mode))
|
Loading…
Reference in a new issue