1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 09:30:04 +08:00
SpaceVim/bundle/nvim-lspconfig-latest/lua/lspconfig/server_configurations/neocmake.lua

24 lines
517 B
Lua
Vendored

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')]],
},
},
}