aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lsp')
-rw-r--r--.config/nvim/lsp/clangd.lua10
-rw-r--r--.config/nvim/lsp/lua_ls.lua17
2 files changed, 0 insertions, 27 deletions
diff --git a/.config/nvim/lsp/clangd.lua b/.config/nvim/lsp/clangd.lua
deleted file mode 100644
index cbe0fb3..0000000
--- a/.config/nvim/lsp/clangd.lua
+++ /dev/null
@@ -1,10 +0,0 @@
-return {
- cmd = {"clangd", "-j=6"},
- filetypes = {"c", "h", "cpp", "hpp", "cc", "hh"},
- root_markers = {
- ".clangd",
- "compile_commands.json",
- "compile_flags.txt",
- ".git",
- },
-}
diff --git a/.config/nvim/lsp/lua_ls.lua b/.config/nvim/lsp/lua_ls.lua
deleted file mode 100644
index ace2329..0000000
--- a/.config/nvim/lsp/lua_ls.lua
+++ /dev/null
@@ -1,17 +0,0 @@
-return {
- cmd = {"lua-language-server"},
- filetypes = {"lua"},
- root_markers = {".luarc.json", ".git"},
- settings = {
- Lua = {
- runtime = {
- version = "LuaJIT",
- },
- diagnostics = {
- disable = {
- "lowercase-global",
- },
- },
- },
- },
-}