mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-27 10:36:12 +01:00
20 lines
466 B
Org Mode
20 lines
466 B
Org Mode
|
* Treemacs
|
||
|
|
||
|
#+NAME: treemacs
|
||
|
#+BEGIN_SRC emacs-lisp
|
||
|
(use-package treemacs
|
||
|
:straight t
|
||
|
:config
|
||
|
(setq doom-themes-treemacs-theme "doom-colors") ; use the colorful treemacs theme
|
||
|
(doom-themes-treemacs-config)
|
||
|
(treemacs-load-theme 'doom-colors))
|
||
|
(use-package treemacs-evil
|
||
|
:after (treemacs evil)
|
||
|
:straight t)
|
||
|
(use-package lsp-treemacs
|
||
|
:straight t
|
||
|
:after (lsp-mode treemacs)
|
||
|
:config
|
||
|
(lsp-treemacs-sync-mode 1))
|
||
|
#+END_SRC
|