Skip to content

Commit

Permalink
feat: add server configuration for glsl_analyzer
Browse files Browse the repository at this point in the history
This is a language server for GLSL (OpenGL Shading Language) I have
written over the last few weeks.
  • Loading branch information
nolanderc committed Sep 30, 2023
1 parent 0d29cad commit ec902f5
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions lua/lspconfig/server_configurations/glsl_analyzer.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
local util = require 'lspconfig.util'

return {
default_config = {
cmd = { 'glsl_analyzer' },
filetypes = { 'glsl' },
root_dir = util.find_git_ancestor,
single_file_support = true,
capabilities = {},
},
docs = {
description = [[
https://github.com/nolanderc/glsl_analyzer
Language server for GLSL
]],
},
}

0 comments on commit ec902f5

Please sign in to comment.