diff options
| author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-07-03 14:45:08 -0700 |
|---|---|---|
| committer | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-07-03 15:49:27 -0700 |
| commit | ec11b85df73cce4edb2925cb7f1d0e8db3a07b1c (patch) | |
| tree | 77d533dc9606ca7e9b30d1a96baebf3de325d2a8 /lua/lspconfig/haxe_language_server.lua | |
| parent | [docgen] Update CONFIG.md (diff) | |
| download | nvim-lspconfig-ec11b85df73cce4edb2925cb7f1d0e8db3a07b1c.tar nvim-lspconfig-ec11b85df73cce4edb2925cb7f1d0e8db3a07b1c.tar.gz nvim-lspconfig-ec11b85df73cce4edb2925cb7f1d0e8db3a07b1c.tar.bz2 nvim-lspconfig-ec11b85df73cce4edb2925cb7f1d0e8db3a07b1c.tar.lz nvim-lspconfig-ec11b85df73cce4edb2925cb7f1d0e8db3a07b1c.tar.xz nvim-lspconfig-ec11b85df73cce4edb2925cb7f1d0e8db3a07b1c.tar.zst nvim-lspconfig-ec11b85df73cce4edb2925cb7f1d0e8db3a07b1c.zip | |
ci: lint and format with stylua
Diffstat (limited to 'lua/lspconfig/haxe_language_server.lua')
| -rw-r--r-- | lua/lspconfig/haxe_language_server.lua | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/lua/lspconfig/haxe_language_server.lua b/lua/lspconfig/haxe_language_server.lua index 8660ea1e..24d1cd73 100644 --- a/lua/lspconfig/haxe_language_server.lua +++ b/lua/lspconfig/haxe_language_server.lua @@ -1,20 +1,20 @@ -local configs = require 'lspconfig/configs' -local util = require 'lspconfig/util' +local configs = require "lspconfig/configs" +local util = require "lspconfig/util" configs.haxe_language_server = { default_config = { - cmd = {"haxe-language-server"}; - filetypes = {"haxe"}; - root_dir = util.root_pattern("*.hxml"); + cmd = { "haxe-language-server" }, + filetypes = { "haxe" }, + root_dir = util.root_pattern "*.hxml", settings = { haxe = { - executable = "haxe"; - }; - }; + executable = "haxe", + }, + }, init_options = { - displayArguments = {"build.hxml"}; - }; - }; + displayArguments = { "build.hxml" }, + }, + }, docs = { description = [[ https://github.com/vshaxe/haxe-language-server @@ -42,7 +42,7 @@ your project's root directory. If your file is named something different, specify it using the `init_options.displayArguments` setting. ]], default_config = { - root_dir = [[root_pattern("*.hxml")]]; - }; - } + root_dir = [[root_pattern("*.hxml")]], + }, + }, } |
