aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorBen Fradella <bcfradella@gmail.com>2022-08-23 07:23:05 -0500
committerGitHub <noreply@github.com>2022-08-23 20:23:05 +0800
commit7301436f5373f55f074aeab1b2e3fb91123be1c0 (patch)
treed90e48ec2ae4b5407e9621f61558093b56688daf /lua
parentfix: only consider servers that have been set up as available (#2066) (diff)
downloadnvim-lspconfig-7301436f5373f55f074aeab1b2e3fb91123be1c0.tar
nvim-lspconfig-7301436f5373f55f074aeab1b2e3fb91123be1c0.tar.gz
nvim-lspconfig-7301436f5373f55f074aeab1b2e3fb91123be1c0.tar.bz2
nvim-lspconfig-7301436f5373f55f074aeab1b2e3fb91123be1c0.tar.lz
nvim-lspconfig-7301436f5373f55f074aeab1b2e3fb91123be1c0.tar.xz
nvim-lspconfig-7301436f5373f55f074aeab1b2e3fb91123be1c0.tar.zst
nvim-lspconfig-7301436f5373f55f074aeab1b2e3fb91123be1c0.zip
feat: add glsl-language-server support (#2003)
Diffstat (limited to 'lua')
-rw-r--r--lua/lspconfig/server_configurations/glslls.lua28
1 files changed, 28 insertions, 0 deletions
diff --git a/lua/lspconfig/server_configurations/glslls.lua b/lua/lspconfig/server_configurations/glslls.lua
new file mode 100644
index 00000000..fd6de7f8
--- /dev/null
+++ b/lua/lspconfig/server_configurations/glslls.lua
@@ -0,0 +1,28 @@
+local util = require 'lspconfig.util'
+
+return {
+ default_config = {
+ cmd = { 'glslls', '--stdin' },
+ filetypes = { 'glsl' },
+ root_dir = util.find_git_ancestor,
+ single_file_support = true,
+ capabilities = {
+ textDocument = {
+ completion = {
+ editsNearCursor = true,
+ },
+ },
+ offsetEncoding = { 'utf-8', 'utf-16' },
+ },
+ },
+ docs = {
+ description = [[
+https://github.com/svenstaro/glsl-language-server
+
+Language server implementation for GLSL
+
+`glslls` can be compiled and installed manually, or, if your distribution has access to the AUR,
+via the `glsl-language-server` AUR package
+ ]],
+ },
+}