diff options
| author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-07-03 15:55:59 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-03 15:55:59 -0700 |
| commit | e1160be89ae6a3ece4664c8e32a82b8637f4b177 (patch) | |
| tree | 77d533dc9606ca7e9b30d1a96baebf3de325d2a8 /lua/lspconfig/gdscript.lua | |
| parent | [docgen] Update CONFIG.md (diff) | |
| parent | ci: lint and format with stylua (diff) | |
| download | nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.tar nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.tar.gz nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.tar.bz2 nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.tar.lz nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.tar.xz nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.tar.zst nvim-lspconfig-e1160be89ae6a3ece4664c8e32a82b8637f4b177.zip | |
Merge pull request #1029 from mjlbach/ci/format_with_stylua
ci: lint and format with stylua
Diffstat (limited to 'lua/lspconfig/gdscript.lua')
| -rw-r--r-- | lua/lspconfig/gdscript.lua | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lua/lspconfig/gdscript.lua b/lua/lspconfig/gdscript.lua index 2fe0699f..3e0ea264 100644 --- a/lua/lspconfig/gdscript.lua +++ b/lua/lspconfig/gdscript.lua @@ -1,22 +1,22 @@ -local configs = require 'lspconfig/configs' -local util = require 'lspconfig/util' +local configs = require "lspconfig/configs" +local util = require "lspconfig/util" configs.gdscript = { default_config = { - cmd = {"nc", "localhost", "6008"}; - filetypes = {"gd", "gdscript", "gdscript3"}; - root_dir = util.root_pattern("project.godot", ".git"); - }; + cmd = { "nc", "localhost", "6008" }, + filetypes = { "gd", "gdscript", "gdscript3" }, + root_dir = util.root_pattern("project.godot", ".git"), + }, docs = { description = [[ https://github.com/godotengine/godot Language server for GDScript, used by Godot Engine. -]]; +]], default_config = { - root_dir = [[util.root_pattern("project.godot", ".git")]]; - }; - }; -}; + root_dir = [[util.root_pattern("project.godot", ".git")]], + }, + }, +} -- vim:et ts=2 sw=2 |
