Commit 6eefe10e307f
Changed files (1)
tools
emacs
config
tools/emacs/config/programming-config.el
@@ -7,11 +7,13 @@
"Where all my sources are.")
(set-register ?s `(file . ,src-dir))
+(use-package highlight-indentation
+ :hook ((yaml-ts-mode . highlight-indentation-mode)
+ (yaml-ts-mode . highlight-indentation-current-column-mode)))
+
(use-package yaml-ts-mode
:mode "\\.ya?ml\\'"
- :hook ((yaml-ts-mode . highlight-indentation-mode)
- (yaml-ts-mode . highlight-indentation-current-column-mode)
- (yaml-ts-mode . display-line-numbers-mode)))
+ :hook ((yaml-ts-mode . display-line-numbers-mode)))
(use-package conf-mode
:mode ("\\.to?ml\\'" . conf-toml-mode))