I added YAML mode.

This commit is contained in:
mANIApHOBIC 2013-11-29 12:11:58 -08:00
parent 525c67bf52
commit ad0627eaba
2 changed files with 12 additions and 2 deletions

View file

@ -7,13 +7,15 @@
(file-expand-wildcards "~/.emacs.d/lisp.d/*.el" t)
)
;END;
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; 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 was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.

8
lisp.d/yaml-mode.el Normal file
View 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))