-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathmetals.lua
41 lines (34 loc) · 1.03 KB
/
metals.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
local M = {}
M.start = function()
local status_ok, metals = pcall(require, "metals")
if not status_ok then
return
end
local metals_config = metals.bare_config()
vim.opt.shortmess:remove "F"
require("telescope").load_extension "metals"
metals_config.settings = {
showImplicitArguments = true,
showInferredType = true,
excludedPackages = {
"akka.actor.typed.javadsl",
"com.github.swagger.akka.javadsl",
"akka.stream.javadsl",
},
fallbackScalaVersion = lvim.builtin.metals.fallbackScalaVersion,
serverVersion = lvim.builtin.metals.serverVersion,
bloopVersion = lvim.builtin.metals.bloopVersion,
serverProperties = {
"-Xms750m",
"-Xmx5G",
},
}
metals_config.init_options.statusBarProvider = "on"
metals_config.capabilities = require("lvim.lsp").common_capabilities()
metals_config.on_attach = function(client, bufnr)
require("lvim.lsp").common_on_attach(client, bufnr)
metals.setup_dap()
end
metals.initialize_or_attach(metals_config)
end
return M