aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/tombi.lua
diff options
context:
space:
mode:
authoryassun7010 <yassun7010@outlook.com>2025-05-25 03:04:58 +0900
committerPeter Lithammer <peter.lithammer@gmail.com>2025-05-25 08:05:42 +0200
commit414a12410b873f226d2fe073d6f87b1aca868b71 (patch)
tree945c0d6b77c6f6f74cc052f6a39a91abd6bdafae /lsp/tombi.lua
parentdocs: update configs.md (diff)
downloadnvim-lspconfig-414a12410b873f226d2fe073d6f87b1aca868b71.tar
nvim-lspconfig-414a12410b873f226d2fe073d6f87b1aca868b71.tar.gz
nvim-lspconfig-414a12410b873f226d2fe073d6f87b1aca868b71.tar.bz2
nvim-lspconfig-414a12410b873f226d2fe073d6f87b1aca868b71.tar.lz
nvim-lspconfig-414a12410b873f226d2fe073d6f87b1aca868b71.tar.xz
nvim-lspconfig-414a12410b873f226d2fe073d6f87b1aca868b71.tar.zst
nvim-lspconfig-414a12410b873f226d2fe073d6f87b1aca868b71.zip
feat(lsp): add Tombi language server configuration
Diffstat (limited to 'lsp/tombi.lua')
-rw-r--r--lsp/tombi.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/lsp/tombi.lua b/lsp/tombi.lua
new file mode 100644
index 00000000..fc1cc886
--- /dev/null
+++ b/lsp/tombi.lua
@@ -0,0 +1,11 @@
+---@brief
+---
+--- https://tombi-toml.github.io/tombi/
+---
+--- Language server for Tombi, a TOML toolkit.
+---
+return {
+ cmd = { 'tombi', 'lsp' },
+ filetypes = { 'toml' },
+ root_markers = { 'tombi.toml', '.git' },
+}