summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ftplugin/gdscript.lua1
-rw-r--r--lua/default-config.lua16
2 files changed, 17 insertions, 0 deletions
diff --git a/ftplugin/gdscript.lua b/ftplugin/gdscript.lua
new file mode 100644
index 00000000..b23a20e2
--- /dev/null
+++ b/ftplugin/gdscript.lua
@@ -0,0 +1 @@
+require("lsp").setup "gdscript"
diff --git a/lua/default-config.lua b/lua/default-config.lua
index 41636757..0ef666aa 100644
--- a/lua/default-config.lua
+++ b/lua/default-config.lua
@@ -1141,6 +1141,22 @@ lvim.lang = {
},
},
},
+ gdscript = {
+ formatter = {},
+ linters = {},
+ lsp = {
+ provider = "gdscript",
+ setup = {
+ cmd = {
+ "nc",
+ "localhost",
+ "6008",
+ },
+ on_attach = common_on_attach,
+ capabilities = common_capabilities,
+ },
+ },
+ },
}
require("core.which-key").config()