blob: bf617ae3fc0878c80da631df53ec7a2e6d657266 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
local bin_name = 'ntt'
---@brief
---
-- https://github.com/nokia/ntt
-- Installation instructions can be found [here](https://github.com/nokia/ntt#Install).
-- Can be configured by passing a "settings" object to `ntt.setup{}`:
-- ```lua
-- vim.lsp.config('ntt', {
-- settings = {
-- ntt = {
-- }
-- }
-- })
-- ```
return {
cmd = { bin_name, 'langserver' },
filetypes = { 'ttcn' },
root_markers = { '.git' },
}
|