diff options
author | Franck Cuny <franck@fcuny.net> | 2021-08-24 17:54:17 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-08-24 17:54:17 -0700 |
commit | 51b9158800b3b6ccb69c80e1cc778d76203d2124 (patch) | |
tree | ffc818a1e31e53a535581d631147b49d5cbf1043 | |
parent | zsh: add settings for `gcloud` (diff) | |
download | emacs.d-51b9158800b3b6ccb69c80e1cc778d76203d2124.tar.gz |
emacs: add lsp-treemacs
It's useful to show errors across a project
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/fcuny-prog.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/emacs/custom/fcuny-prog.el b/emacs/custom/fcuny-prog.el index 2f24a08..cfdecf3 100644 --- a/emacs/custom/fcuny-prog.el +++ b/emacs/custom/fcuny-prog.el @@ -63,6 +63,11 @@ :ensure t :commands lsp-ivy-workspace-symbol) +(use-package lsp-treemacs + :ensure t + :config + (lsp-treemacs-sync-mode 1)) + (use-package dap-mode :ensure t :after (lsp-mode) |