1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-12 02:23:39 +08:00
SpaceVim/bundle/nvim-lspconfig-latest/lua/lspconfig/server_configurations/gdshader_lsp.lua
2024-05-21 12:31:14 +08:00

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.
]],
},
}