Variable: treemacs-indent-guide-style
treemacs-indent-guide-style is a customizable variable defined in
treemacs-customization.el.
Value
line
Documentation
Determines the appearance of treemacs-indent-guide-mode(var)/treemacs-indent-guide-mode(fun).
The choices are
- line for indent guides to use the ' ┃ ' character for every indentation
level
- block to use a thick '██' block interspersed at every second indentation
level
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-customization.el
(defcustom treemacs-indent-guide-style 'line
"Determines the appearance of `treemacs-indent-guide-mode'.
The choices are
- `line' for indent guides to use the ' ┃ ' character for every indentation
level
- `block' to use a thick '██' block interspersed at every second indentation
level"
:type '(choice (const :tag "Line" line)
(const :tag "Block" block))
:group 'treemacs)