diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/neocmake.lua | 23 |
1 files changed, 23 insertions, 0 deletions
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')]], + }, + }, +} |
