first commit

This commit is contained in:
Gabriel
2023-10-18 11:44:57 +02:00
commit f5adba4764
8 changed files with 460 additions and 0 deletions

16
lua/lsp.lua Normal file
View File

@@ -0,0 +1,16 @@
require('mason').setup({
ui = {
icons = {
package_installed = "",
package_pending = "",
package_uninstalled = ""
}
}
})
require('mason-lspconfig').setup({
-- A list of servers to automatically install if they're not already installed
ensure_installed = { 'pylsp', 'gopls', 'lua_ls', 'rust_analyzer', 'clangd' },
})