aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-yaml.el
diff options
context:
space:
mode:
Diffstat (limited to 'modules/init-yaml.el')
-rw-r--r--modules/init-yaml.el11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/init-yaml.el b/modules/init-yaml.el
new file mode 100644
index 0000000..47c533c
--- /dev/null
+++ b/modules/init-yaml.el
@@ -0,0 +1,11 @@
+;;; init-yaml.el --- .Emacs Configuration -*- lexical-binding: t -*-
+;;; Commentary:
+;;
+
+;;; Code:
+;; yaml-mode
+(use-package yaml-mode
+ :mode ("\\.yml\\'" . yaml-mode))
+
+(provide 'init-yaml)
+;;; init-yaml.el ends here