Compare commits

...

2 Commits

Author SHA1 Message Date
7140f9cf70 Merge pull request 'CMake Removal' (#26) from cmake-removal into main
Reviewed-on: #26
2024-11-17 15:24:14 +00:00
80ba7347e1 CMake Removal
Removed cmake from `ensure_installed` so that we dont lok to make
sure cmake is installd when starting or updating nvim. It makes
more sense to have the user install this with Mason instead.
2024-11-17 10:22:10 -05:00

View File

@@ -11,7 +11,6 @@ return {
require("mason-lspconfig").setup({
ensure_installed = {
"clangd",
"cmake",
"lua_ls",
"pyright",
"rust_analyzer",
@@ -28,9 +27,6 @@ return {
lspconfig.clangd.setup({
capabilities = capabilities
})
lspconfig.cmake.setup({
capabilities = capabilities
})
lspconfig.lua_ls.setup({
capabilities = capabilities
})