summary refs log tree commit diff
path: root/config/init-yaml.el
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--config/init-yaml.el16
1 files changed, 16 insertions, 0 deletions
diff --git a/config/init-yaml.el b/config/init-yaml.el
new file mode 100644
index 0000000..0a460e6
--- /dev/null
+++ b/config/init-yaml.el
@@ -0,0 +1,16 @@
+;;; init-yaml.el --- Configure YAML -*- lexical-binding: t -*-
+;; Author: Franck Cuny <franck@fcuny.net>
+
+;;; Commentary:
+
+;; YAML related configurations
+
+;;; Code:
+
+(use-package yaml-mode
+  :ensure t
+  :mode "\\.ya?ml\\'")
+
+(provide 'init-yaml)
+
+;;; init-yaml.el ends here