I’m using mason.nvim and I have the basic config for the ccls server in lspconfig.lua but still get the error message.
lspconfig[“ccls”].setup {
cmd = {“ccls”}, – I have also tried adding the PATH “/usr/bin/ccls”
init_options = {
compilationDatabaseDirectory = “build”;
index = {
threads = 0;
};
clang = {
excludeArgs = { “-frounding-math”} ;
};
}
}