mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
23 lines
421 B
Lua
23 lines
421 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/nmoroze/tclint
|
|
---
|
|
--- `tclsp`, a language server for Tcl
|
|
---
|
|
--- `tclsp` can be installed via `pipx`:
|
|
--- ```sh
|
|
--- pipx install tclint
|
|
--- ```
|
|
---
|
|
--- Or via `pip`:
|
|
--- ```sh
|
|
--- pip install tclint
|
|
--- ```
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'tclsp' },
|
|
filetypes = { 'tcl', 'sdc', 'xdc', 'upf' },
|
|
root_markers = { 'tclint.toml', '.tclint', 'pyproject.toml', '.git' },
|
|
}
|