mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
14 lines
314 B
Lua
14 lines
314 B
Lua
---@brief
|
|
---
|
|
--- https://www.mint-lang.com
|
|
---
|
|
--- Install Mint using the [instructions](https://www.mint-lang.com/install).
|
|
--- The language server is included since version 0.12.0.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'mint', 'ls' },
|
|
filetypes = { 'mint' },
|
|
root_markers = { 'mint.json', '.git' },
|
|
}
|