diff options
| author | Peter Lithammer <peter.lithammer@gmail.com> | 2022-03-08 10:20:29 +0100 |
|---|---|---|
| committer | Peter Lithammer <peter.lithammer@gmail.com> | 2022-03-08 10:20:29 +0100 |
| commit | 737739015f55b8a6af8a9b0482d688bcc94c53cc (patch) | |
| tree | 1c93e22f563b9e00b9245c4841800dc3ae113857 /lua | |
| parent | docs: update server_configurations.md (diff) | |
| download | nvim-lspconfig-737739015f55b8a6af8a9b0482d688bcc94c53cc.tar nvim-lspconfig-737739015f55b8a6af8a9b0482d688bcc94c53cc.tar.gz nvim-lspconfig-737739015f55b8a6af8a9b0482d688bcc94c53cc.tar.bz2 nvim-lspconfig-737739015f55b8a6af8a9b0482d688bcc94c53cc.tar.lz nvim-lspconfig-737739015f55b8a6af8a9b0482d688bcc94c53cc.tar.xz nvim-lspconfig-737739015f55b8a6af8a9b0482d688bcc94c53cc.tar.zst nvim-lspconfig-737739015f55b8a6af8a9b0482d688bcc94c53cc.zip | |
style(teal_ls): fix indentation and single quotes
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/teal_ls.lua | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lua/lspconfig/server_configurations/teal_ls.lua b/lua/lspconfig/server_configurations/teal_ls.lua index 23322d09..b554adda 100644 --- a/lua/lspconfig/server_configurations/teal_ls.lua +++ b/lua/lspconfig/server_configurations/teal_ls.lua @@ -2,16 +2,16 @@ local util = require 'lspconfig.util' return { default_config = { - cmd = { - "teal-language-server", - -- use this to enable logging in /tmp/teal-language-server.log - -- "logging=on", - }, - filetypes = { - "teal", - -- "lua", -- Also works for lua, but you may get type errors that cannot be resolved within lua itself - }, - root_dir = util.root_pattern("tlconfig.lua", ".git"), + cmd = { + 'teal-language-server', + -- use this to enable logging in /tmp/teal-language-server.log + -- "logging=on", + }, + filetypes = { + 'teal', + -- "lua", -- Also works for lua, but you may get type errors that cannot be resolved within lua itself + }, + root_dir = util.root_pattern('tlconfig.lua', '.git'), }, docs = { description = [[ @@ -25,5 +25,5 @@ luarocks install --dev teal-language-server default_config = { root_dir = [[root_pattern("tlconfig.lua", ".git")]], }, - } + }, } |
