nvim/lsp/motoko_lsp.lua
2025-09-22 16:07:34 +02:00

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',
},
}