mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 12:40:05 +08:00
24 lines
488 B
Lua
24 lines
488 B
Lua
local util = require 'lspconfig/util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'bsc', '--lsp', '--stdio' },
|
|
filetypes = { 'brs' },
|
|
single_file_support = true,
|
|
root_dir = util.root_pattern('makefile', 'Makefile', '.git'),
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/RokuCommunity/brighterscript
|
|
|
|
`brightscript` can be installed via `npm`:
|
|
```sh
|
|
npm install -g brighterscript
|
|
```
|
|
]],
|
|
default_config = {
|
|
root_dir = [[root_pattern(".git")]],
|
|
},
|
|
},
|
|
}
|