diff options
| author | Daniel M. Capella <polyzen@archlinux.org> | 2021-09-09 19:38:40 -0400 |
|---|---|---|
| committer | Daniel M. Capella <polyzen@archlinux.org> | 2021-09-09 19:43:06 -0400 |
| commit | 37993b91248804809dd231cb5c01836a16eff8c3 (patch) | |
| tree | 9f489c41dcd7c8f91f30bb9da0c37661a8513acb /lua | |
| parent | [docgen] Update CONFIG.md (diff) | |
| download | nvim-lspconfig-37993b91248804809dd231cb5c01836a16eff8c3.tar nvim-lspconfig-37993b91248804809dd231cb5c01836a16eff8c3.tar.gz nvim-lspconfig-37993b91248804809dd231cb5c01836a16eff8c3.tar.bz2 nvim-lspconfig-37993b91248804809dd231cb5c01836a16eff8c3.tar.lz nvim-lspconfig-37993b91248804809dd231cb5c01836a16eff8c3.tar.xz nvim-lspconfig-37993b91248804809dd231cb5c01836a16eff8c3.tar.zst nvim-lspconfig-37993b91248804809dd231cb5c01836a16eff8c3.zip | |
feat: add taplo-lsp (#1246)
Thanks to @mattn:
https://github.com/mattn/vim-lsp-settings/pull/459
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/taplo.lua | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lua/lspconfig/taplo.lua b/lua/lspconfig/taplo.lua new file mode 100644 index 00000000..f9a14631 --- /dev/null +++ b/lua/lspconfig/taplo.lua @@ -0,0 +1,27 @@ +local configs = require 'lspconfig/configs' +local util = require 'lspconfig/util' + +configs.taplo = { + default_config = { + cmd = { 'taplo-lsp', 'run' }, + filetypes = { 'toml' }, + root_dir = function(fname) + return util.root_pattern '*.toml'(fname) or util.find_git_ancestor(fname) or util.path.dirname(fname) + end, + }, + docs = { + description = [[ +https://taplo.tamasfe.dev/lsp/ + +Language server for Taplo, a TOML toolkit. + +`taplo-lsp` can be installed via `cargo`: +```sh +cargo install taplo-lsp +``` + ]], + default_config = { + root_dir = [[root_pattern("*.toml", ".git") or dirname]], + }, + }, +} |
