blob: 3839bdbbc3411d99a2292070a4f9a12124e78b1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
local util = require 'lspconfig.util'
local root_files = { '.git', 'build', 'cmake' }
return {
default_config = {
cmd = { 'neocmakelsp', '--stdio' },
filetypes = { 'cmake' },
root_dir = function(fname)
return util.root_pattern(unpack(root_files))(fname)
end,
single_file_support = true,
},
docs = {
description = [[
https://github.com/Decodetalkers/neocmakelsp
CMake LSP Implementation
]],
default_config = {
root_dir = [[root_pattern('.git', 'cmake')]],
},
},
}
|