diff options
Diffstat (limited to 'lsp/ntt.lua')
| -rw-r--r-- | lsp/ntt.lua | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/lsp/ntt.lua b/lsp/ntt.lua index bf617ae3..6074a28c 100644 --- a/lsp/ntt.lua +++ b/lsp/ntt.lua @@ -1,20 +1,19 @@ -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 = { --- } --- } --- }) --- ``` +--- 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' }, + cmd = { 'ntt', 'langserver' }, filetypes = { 'ttcn' }, root_markers = { '.git' }, } |
