15 lines
310 B
Lua
15 lines
310 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/dfinity/vscode-motoko
|
|
---
|
|
--- Language server for the Motoko programming language.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'motoko-lsp', '--stdio' },
|
|
filetypes = { 'motoko' },
|
|
root_markers = { 'dfx.json', '.git' },
|
|
init_options = {
|
|
formatter = 'auto',
|
|
},
|
|
}
|