From 04d66a091886a1db16f8498dbcd01eee715ec409 Mon Sep 17 00:00:00 2001 From: Access Date: Thu, 6 Oct 2022 11:53:09 +0800 Subject: feat: add neocmakelsp (#2177) --- lua/lspconfig/server_configurations/neocmake.lua | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 lua/lspconfig/server_configurations/neocmake.lua (limited to 'lua') diff --git a/lua/lspconfig/server_configurations/neocmake.lua b/lua/lspconfig/server_configurations/neocmake.lua new file mode 100644 index 00000000..3839bdbb --- /dev/null +++ b/lua/lspconfig/server_configurations/neocmake.lua @@ -0,0 +1,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')]], + }, + }, +} -- cgit v1.3