Skip to content

Commit 6f51b41

Browse files
committed
fix(lsp): correct module path for rust_analyzer and jdtls
- Reverts the recent change that renamed the module paths for `rust_analyzer` and `jdtls` to use `lsp.settings`. - Restores the correct paths under `lsp.servers` to match previous naming conventions and avoid startup errors.
1 parent 24641bb commit 6f51b41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/plugins/mason.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ return {
6565
end,
6666

6767
["rust_analyzer"] = function()
68-
require("plugins/lsp/settings/rust_analyzer")
68+
require("plugins/lsp/servers/rust_analyzer")
6969
end,
7070

7171
["jdtls"] = function()
72-
require("plugins/lsp/settings/jdtls")
72+
require("plugins/lsp/servers/jdtls")
7373
end,
7474
},
7575
},

0 commit comments

Comments
 (0)