-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathconfig.lua
More file actions
23 lines (21 loc) · 732 Bytes
/
config.lua
File metadata and controls
23 lines (21 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---@class bootls.Config
---@field ls_path? string The path to the language server jar path.
---@field jdtls_name string The name of the JDTLS language server. default: "jdtls"
---@field java_cmd? string The path to the java command.
---@field log_file? string|function The path to the spring boot ls log file.
---@field server vim.lsp.ClientConfig The language server configuration.
---@field exploded_ls_jar_data boolean The exploded language server jar data.
---@field autocmd boolean autimatically setup autocmd in neovim
---@type bootls.Config
local M = {
ls_path = nil,
exploded_ls_jar_data = false,
jdtls_name = "jdtls",
java_cmd = nil,
log_file = nil,
server = {
cmd = {},
},
autocmd = true,
}
return M