We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c966d0d commit af4932dCopy full SHA for af4932d
config.lua
@@ -866,6 +866,19 @@ lspconfig.tailwindcss = add_lsp {
866
verbose = false
867
}
868
869
+---# Teal, a typed dialect of Lua
870
+--- __Status: Works
871
+--- __Site__: https://github.com/teal-language/teal-language-server/
872
+--- __Instalation__: luarocks install teal-language-server
873
+lspconfig.teal_language_server = lspconfig.add_lsp {
874
+ name = "teal-language-server",
875
+ language = "teal",
876
+ file_patterns = { "%.tl$" },
877
+ command = { "teal-language-server" },
878
+ env = { TL_PATH="?.tl;src/?.tl" },
879
+ verbose = false
880
+}
881
+
882
---# Typst - tinymist
883
--- __Status: Works
884
--- __Site__: https://github.com/Myriad-Dreamin/tinymist
0 commit comments