Commit f39102e483aa

Vincent Demeester <vincent@sbr.pm>
2020-04-08 16:51:00
programming-config.el: re-enable yaml & toml
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent f6e9292
Changed files (2)
tools/emacs/config/config-files.el
@@ -26,16 +26,6 @@
   (set-face-background 'highlight-indentation-face "#e3e3d3")
   (set-face-background 'highlight-indentation-current-column-face "#c3b3b3"))
 
-(use-package yaml-mode
-  :disabled
-  :mode "\\.ya?ml\\'"
-  :hook ((yaml-mode . highlight-indentation-mode)
-         (yaml-mode . highlight-indentation-current-column-mode)))
-
-(use-package toml-mode
-  :disabled
-  :mode "\\.to?ml\\'")
-
 (defun vde/delete-this-file ()
   "Delete the current file, and kill the buffer."
   (interactive)
tools/emacs/config/programming-config.el
@@ -0,0 +1,7 @@
+(use-package yaml-mode
+  :mode "\\.ya?ml\\'"
+  :hook ((yaml-mode . highlight-indentation-mode)
+         (yaml-mode . highlight-indentation-current-column-mode)))
+
+(use-package toml-mode
+  :mode "\\.to?ml\\'")