mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-12 02:23:39 +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.
|
|
]],
|
|
},
|
|
}
|