commit dc41ab5010ea9b2ca14c4eb2f5e558d80992748c
parent be93d651616763bf6f2311744679da5bd63d399b
Author: Vincent Demeester <vincent@sbr.pm>
Date: Thu, 20 Aug 2020 17:54:53 +0200
tools/emacs: use conf-mode for toml
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/emacs/config/programming-config.el b/tools/emacs/config/programming-config.el
@@ -8,8 +8,8 @@
:hook ((yaml-mode . highlight-indentation-mode)
(yaml-mode . highlight-indentation-current-column-mode)))
-(use-package toml-mode
- :mode "\\.to?ml\\'")
+(use-package conf-mode
+ :mode ("\\.to?ml\\'" . conf-toml-mode))
(provide 'programming-config)
;;; programming-config.el ends here