mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-05-08 01:56:09 +02:00
28 lines
757 B
Lua
28 lines
757 B
Lua
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
-- This config is DEPRECATED.
|
|
-- Use the configs in `lsp/` instead (requires Nvim 0.11).
|
|
--
|
|
-- ALL configs in `lua/lspconfig/configs/` will be DELETED.
|
|
-- They exist only to support Nvim 0.10 or older.
|
|
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'wgsl-analyzer' },
|
|
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
|
|
```
|
|
]],
|
|
},
|
|
}
|