1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-11 02:25:48 +08:00
SpaceVim/bundle/nvim-lspconfig-latest/lua/lspconfig/server_configurations/glsl_analyzer.lua

19 lines
391 B
Lua
Raw Normal View History

local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'glsl_analyzer' },
filetypes = { 'glsl', 'vert', 'tesc', 'tese', 'frag', 'geom', 'comp' },
root_dir = util.find_git_ancestor,
single_file_support = true,
capabilities = {},
},
docs = {
description = [[
https://github.com/nolanderc/glsl_analyzer
Language server for GLSL
]],
},
}