diff options
author | Jesús <heckyel@hyperbola.info> | 2018-08-31 21:02:39 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2018-08-31 21:02:39 -0500 |
commit | 300d7e70f6dc95fa7e35fdd2eb5713a39f37d8f3 (patch) | |
tree | 8da4542da5423fea8d65fd206af9a320ac49b400 /lisp | |
parent | f18582dfd2195982aa14b7ab081f92d580e7f084 (diff) | |
download | emacs-personal-300d7e70f6dc95fa7e35fdd2eb5713a39f37d8f3.tar.lz emacs-personal-300d7e70f6dc95fa7e35fdd2eb5713a39f37d8f3.tar.xz emacs-personal-300d7e70f6dc95fa7e35fdd2eb5713a39f37d8f3.zip |
Add support yaml-mode
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-yaml.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/init-yaml.el b/lisp/init-yaml.el new file mode 100644 index 0000000..47956c8 --- /dev/null +++ b/lisp/init-yaml.el @@ -0,0 +1,4 @@ +;; yaml-mode +(require-package 'yaml-mode) +(add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode)) +(provide 'init-yaml) |