diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/wgsl_analyzer.lua | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/lua/lspconfig/server_configurations/wgsl_analyzer.lua b/lua/lspconfig/server_configurations/wgsl_analyzer.lua new file mode 100644 index 00000000..d5c73135 --- /dev/null +++ b/lua/lspconfig/server_configurations/wgsl_analyzer.lua @@ -0,0 +1,30 @@ +local util = require 'lspconfig.util' + +local bin_name = 'wgsl_analyzer' +local cmd = { bin_name } + +if vim.fn.has 'win32' == 1 then + cmd = { 'cmd.exe', '/C', bin_name } +end + +return { + default_config = { + cmd = cmd, + filetypes = { 'wgsl' }, + root_dir = util.root_pattern('.git'), + settings = {} + }, + docs = { + description = [[ +https://github.com/wgsl-analyzer/wgsl-analyzer + +`wgsl_analyzer` can be installed via `cargo`: +```sh +cargo install --git https://github.com/wgsl-analyzer/wgsl-analyzer wgsl_analyzer +``` +]], + default_config = { + root_dir = [[root_pattern(".git"]], + } + } +} |
