Skip to content

Commit 5ca5223

Browse files
committed
Update README.md quick start
1 parent 8d53a31 commit 5ca5223

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)