Skip to content

Commit

Permalink
feat: add wgsl_analyzer (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
williamboman committed Oct 29, 2022
1 parent 6768067 commit 0fd9fbe
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ local DEFAULT_SETTINGS = {
| Visualforce | `visualforce` |
| Vue | `volar` |
| Vue | `vuels` |
| WGSL | `wgsl_analyzer` |
| XML | `lemminx` |
| YAML | `yamlls` |
| Zig | `zls` |
Expand Down
1 change: 1 addition & 0 deletions doc/server-mapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@
| [vls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#vls) | [vls](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#vls) |
| [volar](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#volar) | [vue-language-server](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#vue-language-server) |
| [vuels](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#vuels) | [vetur-vls](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#vetur-vls) |
| [wgsl_analyzer](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#wgsl_analyzer) | [wgsl-analyzer](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#wgsl-analyzer) |
| [yamlls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#yamlls) | [yaml-language-server](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#yaml-language-server) |
| [zk](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#zk) | [zk](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#zk) |
| [zls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#zls) | [zls](https://github.com/williamboman/mason.nvim/blob/main/PACKAGES.md#zls) |
1 change: 1 addition & 0 deletions lua/mason-lspconfig/mappings/filetype.lua
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ return {
vlang = { "vls" },
vmasm = { "asm_lsp" },
vue = { "eslint", "stylelint_lsp", "tailwindcss", "volar", "vuels" },
wgsl = { "wgsl_analyzer" },
wxss = { "stylelint_lsp" },
xml = { "lemminx" },
xsd = { "lemminx" },
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 @@ -127,6 +127,7 @@ M.lspconfig_to_package = {
["vls"] = "vls",
["volar"] = "vue-language-server",
["vuels"] = "vetur-vls",
["wgsl_analyzer"] = "wgsl-analyzer",
["yamlls"] = "yaml-language-server",
["zk"] = "zk",
["zls"] = "zls",
Expand Down

0 comments on commit 0fd9fbe

Please sign in to comment.