Skip to content

Commit

Permalink
feat: add bright_script (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
casonadams committed Jan 22, 2023
1 parent 5b388c0 commit d7ff61a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ local DEFAULT_SETTINGS = {
| Bash | `bashls` |
| Beancount | `beancount` |
| Bicep | `bicep` |
| BrighterScript | `bright_script` |
| Buf | `bufls` |
| C | `clangd` |
| C# | `csharp_ls` |
Expand Down
1 change: 1 addition & 0 deletions doc/mason-lspconfig-mapping.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ awk-language-server awk_ls
bash-language-server bashls
beancount-language-server beancount
bicep-lsp bicep
brighterscript bright_script
bsl-language-server bsl_ls
buf-language-server bufls
clangd clangd
Expand Down
1 change: 1 addition & 0 deletions doc/server-mapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
| [bashls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#bashls) | [bash-language-server](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#bash-language-server) |
| [beancount](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#beancount) | [beancount-language-server](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#beancount-language-server) |
| [bicep](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#bicep) | [bicep-lsp](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#bicep-lsp) |
| [bright_script](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#bright_script) | [brighterscript](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#brighterscript) |
| [bsl_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#bsl_ls) | [bsl-language-server](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#bsl-language-server) |
| [bufls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#bufls) | [buf-language-server](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#buf-language-server) |
| [clangd](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#clangd) | [clangd](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#clangd) |
Expand Down
1 change: 1 addition & 0 deletions lua/mason-lspconfig/mappings/filetype.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ return {
bib = { "ltex", "texlab" },
bicep = { "bicep" },
blade = { "tailwindcss" },
brs = { "bright_script" },
bsl = { "bsl_ls" },
c = { "clangd" },
clar = { "clarity_lsp" },
Expand Down
1 change: 1 addition & 0 deletions lua/mason-lspconfig/mappings/server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ M.lspconfig_to_package = {
["bashls"] = "bash-language-server",
["beancount"] = "beancount-language-server",
["bicep"] = "bicep-lsp",
["bright_script"] = "brighterscript",
["bsl_ls"] = "bsl-language-server",
["bufls"] = "buf-language-server",
["clangd"] = "clangd",
Expand Down

0 comments on commit d7ff61a

Please sign in to comment.