File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,9 @@ Minimal configuration with [company-lsp](https://github.com/tigersoldier/company
6262 :init (setq lsp-eldoc-render-all nil
6363 lsp-highlight-symbol-at-point nil))
6464
65+ (use-package hydra
66+ :ensure t)
67+
6568(use-package company-lsp
6669 :after company
6770 :ensure t
@@ -82,16 +85,22 @@ Minimal configuration with [company-lsp](https://github.com/tigersoldier/company
8285 (dap-mode t)
8386 (dap-ui-mode t))
8487
85- (use-package dap-java
86- :after 'lsp-java)
87-
8888(use-package lsp-java
8989 :ensure t
9090 :config
9191 (add-hook 'java-mode-hook 'lsp-java-enable)
9292 (add-hook 'java-mode-hook 'flycheck-mode)
9393 (add-hook 'java-mode-hook 'company-mode)
9494 (add-hook 'java-mode-hook 'lsp-ui-mode))
95+
96+ (use-package dap-java
97+ :after 'lsp-java)
98+
99+ (use-package treemacs
100+ :ensure t)
101+
102+ (use-package lsp-java-treemacs
103+ :after (treemacs))
95104```
96105## Supported commands
97106### LSP Mode commands
You can’t perform that action at this time.
0 commit comments