mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
18 lines
337 B
Lua
18 lines
337 B
Lua
---@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' },
|
|
}
|