blob: 0f564171285eb99102a89425437af8951e37e7d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---@brief
---
--- https://github.com/RokuCommunity/brighterscript
---
--- `brightscript` can be installed via `npm`:
--- ```sh
--- npm install -g brighterscript
--- ```
---@type vim.lsp.Config
return {
cmd = { 'bsc', '--lsp', '--stdio' },
filetypes = { 'brs' },
root_markers = { 'makefile', 'Makefile', '.git' },
}
|