blob: a01efa8eb3750413d9098f133b40c1f473c3df43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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.
]],
},
}
|