aboutsummaryrefslogtreecommitdiff
path: root/lua/user/lsp/ccls.lua
diff options
context:
space:
mode:
authorAleksa Vuckovic <aleksa@vuckovic.cc>2023-02-24 01:35:43 +0100
committerAleksa Vuckovic <aleksa@vuckovic.cc>2023-02-24 01:35:43 +0100
commit2a5f8920d10c4a85586ae6d697f233ce52144a10 (patch)
tree2bb4342359ae57d3b9cdff6cd35740d2b6f5882b /lua/user/lsp/ccls.lua
parent506fa11fc88dbacf80d1ba93d88e65244966050c (diff)
nvim-lsp-installer replaced with mason.nvim
Diffstat (limited to 'lua/user/lsp/ccls.lua')
-rw-r--r--lua/user/lsp/ccls.lua6
1 files changed, 0 insertions, 6 deletions
diff --git a/lua/user/lsp/ccls.lua b/lua/user/lsp/ccls.lua
index f8817dc..94fe2a0 100644
--- a/lua/user/lsp/ccls.lua
+++ b/lua/user/lsp/ccls.lua
@@ -16,11 +16,6 @@ end
if string.match(vim.fn.expand('%:p'),"/home/aleksa/mygit/oldrepos/mykernel/") then
extraArgs_opt = { "--sysroot=/opt/aleksa", "--gcc-toolchain=/opt/aleksa/usr/bin/i686-aleksa-gcc", };
---[[
- vim.opt["shiftwidth"]=4;
- vim.opt["tabstop"]=4;
- vim.opt["expandtab"]=true;
-]]
vim.notify("mykernel");
end
@@ -49,7 +44,6 @@ lspconfig.ccls.setup {
debounce_text_changes = 150,
};
init_options = {
- compilationDatabaseDirectory = "build";
cache = {
directory = "/tmp/ccls-cache";
};