commit f39102e483aafc4d0996d6fca425086f63852622 parent f6e92925d93f3f837e317dd1a1cdac1921a5ae33 Author: Vincent Demeester <vincent@sbr.pm> Date: Wed, 8 Apr 2020 16:51:00 +0200 programming-config.el: re-enable yaml & toml Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
M | tools/emacs/config/config-files.el | | | 10 | ---------- |
A | tools/emacs/config/programming-config.el | | | 7 | +++++++ |
2 files changed, 7 insertions(+), 10 deletions(-)
diff --git a/tools/emacs/config/config-files.el b/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) diff --git a/tools/emacs/config/programming-config.el b/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\\'")