Highlight Indentation Guides
- Add highlight-indent-guides package - Configure method to fill w/ responsive coloring
This commit is contained in:
committed by
Sravan Balaji
parent
c3374c310c
commit
afc8905282
11
README.org
11
README.org
@@ -313,6 +313,17 @@ Use Hydra to design a transient key binding for quickly adjusting the scale of t
|
|||||||
"ss" '(hydra-text-scale/body :which-key "scale text"))
|
"ss" '(hydra-text-scale/body :which-key "scale text"))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
** Highlight Indent Guides
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp :tangle init.el
|
||||||
|
(use-package highlight-indent-guides
|
||||||
|
:hook (prog-mode . highlight-indent-guides-mode)
|
||||||
|
:init
|
||||||
|
(setq highlight-indent-guides-method 'fill)
|
||||||
|
(setq highlight-indent-guides-responsive 'stack)
|
||||||
|
(setq highlight-indent-guides-delay 0))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
* Org Mode
|
* Org Mode
|
||||||
|
|
||||||
** Better Font Faces
|
** Better Font Faces
|
||||||
|
7
init.el
7
init.el
@@ -217,6 +217,13 @@
|
|||||||
(sb/leader-keys
|
(sb/leader-keys
|
||||||
"ss" '(hydra-text-scale/body :which-key "scale text"))
|
"ss" '(hydra-text-scale/body :which-key "scale text"))
|
||||||
|
|
||||||
|
(use-package highlight-indent-guides
|
||||||
|
:hook (prog-mode . highlight-indent-guides-mode)
|
||||||
|
:init
|
||||||
|
(setq highlight-indent-guides-method 'fill)
|
||||||
|
(setq highlight-indent-guides-responsive 'stack)
|
||||||
|
(setq highlight-indent-guides-delay 0))
|
||||||
|
|
||||||
(defun sb/org-font-setup ()
|
(defun sb/org-font-setup ()
|
||||||
;; ;; Replace list hyphen with dot
|
;; ;; Replace list hyphen with dot
|
||||||
;; (font-lock-add-keywords 'org-mode
|
;; (font-lock-add-keywords 'org-mode
|
||||||
|
Reference in New Issue
Block a user