mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-28 02:56:12 +01:00
16 lines
289 B
Org Mode
16 lines
289 B
Org Mode
|
* Treemacs
|
||
|
|
||
|
#+NAME: treemacs
|
||
|
#+BEGIN_SRC emacs-lisp
|
||
|
(use-package treemacs
|
||
|
:ensure t)
|
||
|
(use-package treemacs-evil
|
||
|
:after (treemacs evil)
|
||
|
:ensure t)
|
||
|
(use-package lsp-treemacs
|
||
|
:ensure t
|
||
|
:after (lsp-mode treemacs)
|
||
|
:config
|
||
|
(lsp-treemacs-sync-mode 1))
|
||
|
#+END_SRC
|