File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change
1
+ -- nvim-java is easy to setup and work with Eclipse's JDTLS out of the box.
2
+ -- However, it doesn't seem to support jumping into standard library right now.
3
+ return { ' nvim-java/nvim-java' }
Original file line number Diff line number Diff line change @@ -157,7 +157,9 @@ return { -- LSP Configuration & Plugins
157
157
local servers = {
158
158
-- clangd = {},
159
159
-- gopls = {},
160
- pyright = {},
160
+ pyright = {
161
+ -- NOTE: Required Pyright to be installed.
162
+ },
161
163
-- rust_analyzer = {},
162
164
-- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs
163
165
--
@@ -168,6 +170,11 @@ return { -- LSP Configuration & Plugins
168
170
-- tsserver = {},
169
171
--
170
172
173
+ jdtls = {
174
+ -- NOTE: Required Eclipse's JDTLS
175
+ -- https://github.com/eclipse-jdtls/eclipse.jdt.ls#installation
176
+ },
177
+
171
178
lua_ls = {
172
179
-- cmd = {...},
173
180
-- filetypes = { ...},
You can’t perform that action at this time.
0 commit comments