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