made windows specific changes

This commit is contained in:
2025-01-16 12:58:07 -08:00
parent 3d44682d05
commit 4f16421686
2 changed files with 15 additions and 14 deletions

View File

@@ -20,18 +20,19 @@ return {
local capabilities = require'blink.cmp'.get_lsp_capabilities()
lspconfig.lua_ls.setup {capabilities = capabilities}
lspconfig.ccls.setup {
capabilities = capabilities,
init_options = {
compilationDatabaseDirectory = "build";
index = {
threads = 0;
};
clang = {
excludeArgs = { "-frounding-math"} ;
};
}
}
lspconfig.clangd.setup {capabilities = capabilities}
--lspconfig.ccls.setup {
-- capabilities = capabilities,
-- init_options = {
-- compilationDatabaseDirectory = "build";
-- index = {
-- threads = 0;
-- };
-- clang = {
-- excludeArgs = { "-frounding-math"} ;
-- };
-- }
--}
lspconfig.cmake.setup {capabilities = capabilities}
end,
}