mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-30 20:16:17 +01:00
9ec2e601e2
digraph, nix
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
|