diff options
| author | Access <ShootingStarDragons@protonmail.com> | 2022-10-06 11:53:09 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-06 11:53:09 +0800 |
| commit | 04d66a091886a1db16f8498dbcd01eee715ec409 (patch) | |
| tree | 9fad91bfa48f643782ea486be036d84ed54a574f /lua | |
| parent | fix: gdscript use ip address instead of localhost (#2175) (diff) | |
| download | nvim-lspconfig-04d66a091886a1db16f8498dbcd01eee715ec409.tar nvim-lspconfig-04d66a091886a1db16f8498dbcd01eee715ec409.tar.gz nvim-lspconfig-04d66a091886a1db16f8498dbcd01eee715ec409.tar.bz2 nvim-lspconfig-04d66a091886a1db16f8498dbcd01eee715ec409.tar.lz nvim-lspconfig-04d66a091886a1db16f8498dbcd01eee715ec409.tar.xz nvim-lspconfig-04d66a091886a1db16f8498dbcd01eee715ec409.tar.zst nvim-lspconfig-04d66a091886a1db16f8498dbcd01eee715ec409.zip | |
feat: add neocmakelsp (#2177)
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')]], + }, + }, +} |
