1
0
Fork 0

fix(emacs): add to neotree hidden files

This commit is contained in:
Lucas Sta Maria 2025-09-18 23:16:29 -05:00
parent 704332ecb4
commit 8031caaae4
Signed by: lucas
GPG key ID: F07FB16A826E3B47

View file

@ -101,7 +101,11 @@
(neo-smart-open t)
(neo-window-fixed-size nil)
(neo-show-hidden-files t))
:bind (("C-c t" . #'neotree-toggle-dir-or-project)))
:bind (("C-c t" . #'neotree-toggle-dir-or-project))
:config
(setq neo-hidden-regexp-list
(append neo-hidden-regexp-list
'("^__pycache__$" "^node_modules$"))))
(use-package git-gutter :straight t
:hook (prog-mode . git-gutter-mode)
:custom