aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/opencl_ls.lua
blob: 53cf67e2b551ffaedc1b37820bb7d7aed18974a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---@brief
---
--- https://github.com/Galarius/opencl-language-server
---
--- Build instructions can be found [here](https://github.com/Galarius/opencl-language-server/blob/main/_dev/build.md).
---
--- Prebuilt binaries are available for Linux, macOS and Windows [here](https://github.com/Galarius/opencl-language-server/releases).

---@type vim.lsp.Config
return {
  cmd = { 'opencl-language-server' },
  filetypes = { 'opencl' },
  root_markers = { '.git' },
}