ENH make highlight modes toggle-able

This commit is contained in:
Nathan Dwarshuis 2022-08-04 12:19:07 -04:00
parent 8035566114
commit d999489572
1 changed files with 4 additions and 3 deletions

View File

@ -1649,9 +1649,7 @@ R-markdown is enabled via polymode, which allows multiple modes in one buffer (t
(use-package yaml-mode (use-package yaml-mode
:straight t :straight t
:hook ((yaml-mode . fci-mode) :hook ((yaml-mode . fci-mode)))
(yaml-mode . highlight-indentation-mode)
(yaml-mode . highlight-indentation-current-column-mode)))
#+END_SRC #+END_SRC
*** csv files *** csv files
:PROPERTIES: :PROPERTIES:
@ -4898,6 +4896,9 @@ The function keys are nice because they are almost (not always) free in every mo
("v" visual-line-mode) ("v" visual-line-mode)
("h" global-hl-line-mode) ("h" global-hl-line-mode)
("r" rainbow-mode) ("r" rainbow-mode)
("h" highlight-indentation-mode)
("H" highlight-indentation-current-column-mode)
("r" rainbow-mode)
("n" display-line-numbers-mode)) ("n" display-line-numbers-mode))
(defhydra hydra-tools (global-map "<f12>" :exit t) (defhydra hydra-tools (global-map "<f12>" :exit t)