mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-14 05:58:00 +08:00
17 lines
350 B
Lua
17 lines
350 B
Lua
|
local util = require 'lspconfig.util'
|
||
|
|
||
|
return {
|
||
|
default_config = {
|
||
|
cmd = { 'gdshader-lsp', '--stdio' },
|
||
|
filetypes = { 'gdshader', 'gdshaderinc' },
|
||
|
root_dir = util.root_pattern 'project.godot',
|
||
|
},
|
||
|
docs = {
|
||
|
description = [[
|
||
|
https://github.com/godofavacyn/gdshader-lsp
|
||
|
|
||
|
A language server for the Godot Shading language.
|
||
|
]],
|
||
|
},
|
||
|
}
|