blob: ce0908ad2e6a58dcbfbc5cfbeb5492e1ed113c4a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
local util = require 'lspconfig.util'
return {
default_config = {
cmd = {
'janet-lsp',
'--stdio',
},
filetypes = { 'janet' },
root_dir = function(fname)
return util.root_pattern('project.janet')(fname)
or vim.fs.dirname(vim.fs.find('.git', { path = fname, upward = true })[1])
end,
single_file_support = true,
},
docs = {
description = [[
https://github.com/CFiggers/janet-lsp
A Language Server Protocol implementation for Janet.
]],
root_dir = [[root_pattern("project.janet", ".git")]],
},
}
|