You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.2 KiB
35 lines
1.2 KiB
;; für quickhelp in treemacs: ? (helpful hydra)
|
|
|
|
(use-package treemacs
|
|
:ensure t
|
|
:defer t
|
|
:config
|
|
(setq treemacs-follow-after-init t
|
|
treemacs-width 35
|
|
treemacs-indentation 2
|
|
treemacs-git-integration t
|
|
treemacs-collapse-dirs 3
|
|
treemacs-silent-refresh nil
|
|
treemacs-change-root-without-asking nil
|
|
treemacs-sorting 'alphabetic-desc
|
|
treemacs-show-hidden-files t
|
|
treemacs-never-persist nil
|
|
treemacs-is-never-other-window nil
|
|
treemacs-goto-tag-strategy 'refetch-index
|
|
treemacs-follow-mode t
|
|
treemacs-filewatch-mode t)
|
|
:bind
|
|
("<f8>" . treemacs-toggle)
|
|
)
|
|
|
|
(use-package treemacs-projectile
|
|
:ensure t
|
|
:defer t
|
|
:config
|
|
(setq treemacs-header-function #'treemacs-projectile-create-header)
|
|
:bind*
|
|
(("M-m fP" . treemacs-projectile)
|
|
("M-m fp" . treemacs-projectile-toggle))
|
|
)
|
|
|
|
(provide 'plugin-treemacs)
|