blob: 351dda34a2f3de7d036604a50fed416d236ced74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---@brief
---
--- https://github.com/diku-dk/futhark
---
--- Futhark Language Server
---
--- This language server comes with the futhark compiler and is run with the command
--- ```
--- futhark lsp
--- ```
---@type vim.lsp.Config
return {
cmd = { 'futhark', 'lsp' },
filetypes = { 'futhark', 'fut' },
root_markers = { '.git' },
}
|