aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorPig Fang <g-plane@hotmail.com>2025-02-06 13:49:33 +0800
committerGitHub <noreply@github.com>2025-02-06 13:49:33 +0800
commit4ff005d1dce5154a0fb82680c4c138af0524a815 (patch)
tree38222b209a8ec2b6d0cd696dd1796bbd33dd9be6 /lua
parentfix(health.lua): increased version check cmd timeout (#3601) (diff)
downloadnvim-lspconfig-4ff005d1dce5154a0fb82680c4c138af0524a815.tar
nvim-lspconfig-4ff005d1dce5154a0fb82680c4c138af0524a815.tar.gz
nvim-lspconfig-4ff005d1dce5154a0fb82680c4c138af0524a815.tar.bz2
nvim-lspconfig-4ff005d1dce5154a0fb82680c4c138af0524a815.tar.lz
nvim-lspconfig-4ff005d1dce5154a0fb82680c4c138af0524a815.tar.xz
nvim-lspconfig-4ff005d1dce5154a0fb82680c4c138af0524a815.tar.zst
nvim-lspconfig-4ff005d1dce5154a0fb82680c4c138af0524a815.zip
feat: add wasm-language-tools (#3564)
* feat: add wasm-language-tools * chore: remove unused `util`
Diffstat (limited to 'lua')
-rw-r--r--lua/lspconfig/configs/wasm_language_tools.lua15
1 files changed, 15 insertions, 0 deletions
diff --git a/lua/lspconfig/configs/wasm_language_tools.lua b/lua/lspconfig/configs/wasm_language_tools.lua
new file mode 100644
index 00000000..1cf1893b
--- /dev/null
+++ b/lua/lspconfig/configs/wasm_language_tools.lua
@@ -0,0 +1,15 @@
+return {
+ default_config = {
+ cmd = { 'wat_server' },
+ filetypes = { 'wat' },
+ single_file_support = true,
+ },
+ docs = {
+ description = [[
+https://github.com/g-plane/wasm-language-tools
+
+WebAssembly Language Tools aims to provide and improve the editing experience of WebAssembly Text Format.
+It also provides an out-of-the-box formatter (a.k.a. pretty printer) for WebAssembly Text Format.
+]],
+ },
+}