diff options
| author | yassun7010 <yassun7010@outlook.com> | 2025-05-25 03:04:58 +0900 |
|---|---|---|
| committer | Peter Lithammer <peter.lithammer@gmail.com> | 2025-05-25 08:05:42 +0200 |
| commit | 414a12410b873f226d2fe073d6f87b1aca868b71 (patch) | |
| tree | 945c0d6b77c6f6f74cc052f6a39a91abd6bdafae /lsp/tombi.lua | |
| parent | docs: update configs.md (diff) | |
| download | nvim-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.lua | 11 |
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' }, +} |
