1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 22:10:05 +08:00
SpaceVim/bundle/nvim-lspconfig/lua/lspconfig/server_configurations/cmake.lua
2024-06-13 08:44:55 +08:00

24 lines
547 B
Lua

local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'cmake-language-server' },
filetypes = { 'cmake' },
root_dir = util.root_pattern('.git', 'compile_commands.json', 'build'),
single_file_support = true,
init_options = {
buildDirectory = 'build',
},
},
docs = {
description = [[
https://github.com/regen100/cmake-language-server
CMake LSP Implementation
]],
default_config = {
root_dir = [[root_pattern(".git", "compile_commands.json", "build") or dirname]],
},
},
}