aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim_lsp/cmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/nvim_lsp/cmake.lua')
-rwxr-xr-xlua/nvim_lsp/cmake.lua25
1 files changed, 0 insertions, 25 deletions
diff --git a/lua/nvim_lsp/cmake.lua b/lua/nvim_lsp/cmake.lua
deleted file mode 100755
index b47d23a2..00000000
--- a/lua/nvim_lsp/cmake.lua
+++ /dev/null
@@ -1,25 +0,0 @@
-local configs = require 'nvim_lsp/configs'
-local util = require 'nvim_lsp/util'
-
-configs.cmake = {
- default_config = {
- cmd = {"cmake-language-server"};
- filetypes = {"cmake"};
- root_dir = util.root_pattern(".git", "compile_commands.json", "build");
- 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")]];
- };
- };
-};
-
--- vim:et ts=2 sw=2