Variable: treemacs-dotfiles-regex
treemacs-dotfiles-regex is a customizable variable defined in
treemacs-customization.el.
Value
"^\\..+"
Documentation
Files matching this regular expression count as dotfiles.
This controls the matching behaviour of treemacs-toggle-show-dotfiles.
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-customization.el
(defcustom treemacs-dotfiles-regex (rx bol "." (1+ any))
"Files matching this regular expression count as dotfiles.
This controls the matching behaviour of `treemacs-toggle-show-dotfiles'."
:type 'regexp
:group 'treemacs)