updated neovim configuration

added telescop and fuzzy finding along with lsp and git integration
This commit is contained in:
hellisabove
2023-01-26 00:50:03 +02:00
parent ea718c82b6
commit 0002e01d23
11 changed files with 336 additions and 3 deletions
+28
View File
@@ -0,0 +1,28 @@
require("mason").setup({
ui = {
icons = {
package_installed = "",
package_pending = "",
package_uninstalled = "",
},
},
})
require("mason-lspconfig").setup({
ensure_installed = {
"sumneko_lua",
"clangd",
"rust_analyzer",
"vls",
},
automatic_installation = true,
})
require("mason-null-ls").setup({
ensure_installed = {
"prettier",
"stylua",
"eslint_d",
},
automatic_installation = true,
})