diff options
| -rw-r--r-- | doc/server_configurations.md | 40 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 40 |
2 files changed, 80 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index dda0ec26..99af110e 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -144,6 +144,7 @@ that config. This file is accessible in neovim via `:help lspconfig-server-confi - [texlab](#texlab) - [tflint](#tflint) - [theme_check](#theme_check) +- [tilt_ls](#tilt_ls) - [tsserver](#tsserver) - [typeprof](#typeprof) - [vala_ls](#vala_ls) @@ -6098,6 +6099,45 @@ require'lspconfig'.theme_check.setup{} ``` +## tilt_ls + +https://github.com/tilt-dev/tilt + +Tilt language server. + +You might need to add filetype detection manually: + +```vim +autocmd BufRead Tiltfile setf=tiltfile +``` + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.tilt_ls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "tilt", "lsp", "start" } + ``` + - `filetypes` : + ```lua + { "tiltfile" } + ``` + - `root_dir` : + ```lua + root_pattern(".git") + ``` + - `single_file_support` : + ```lua + true + ``` + + ## tsserver https://github.com/theia-ide/typescript-language-server diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index dda0ec26..99af110e 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -144,6 +144,7 @@ that config. This file is accessible in neovim via `:help lspconfig-server-confi - [texlab](#texlab) - [tflint](#tflint) - [theme_check](#theme_check) +- [tilt_ls](#tilt_ls) - [tsserver](#tsserver) - [typeprof](#typeprof) - [vala_ls](#vala_ls) @@ -6098,6 +6099,45 @@ require'lspconfig'.theme_check.setup{} ``` +## tilt_ls + +https://github.com/tilt-dev/tilt + +Tilt language server. + +You might need to add filetype detection manually: + +```vim +autocmd BufRead Tiltfile setf=tiltfile +``` + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.tilt_ls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "tilt", "lsp", "start" } + ``` + - `filetypes` : + ```lua + { "tiltfile" } + ``` + - `root_dir` : + ```lua + root_pattern(".git") + ``` + - `single_file_support` : + ```lua + true + ``` + + ## tsserver https://github.com/theia-ide/typescript-language-server |
