aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/mint.lua
blob: fdcc23836a0d404f45b025ee76c886bd72adeaf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---@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' },
}