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