chore(all): change stuff in a lot of things

This commit is contained in:
Afonso Franco 2024-05-26 16:18:00 +01:00
parent 232e9ec910
commit 95ff75b7e5
Signed by: afonso
SSH key fingerprint: SHA256:gkVPzsQQJzqi21ntQBV6pXTx4bYI53rFGI4XtvCpwd4
13 changed files with 171 additions and 185 deletions

View file

@ -1,17 +1,13 @@
local present, mason = pcall(require, "mason")
local mason = require("mason")
vim.api.nvim_create_augroup("_mason", { clear = true })
local options = {
PATH = "skip",
ui = {
icons = {
package_pending = "",
package_installed = "󰄳 ",
package_uninstalled = "",
},
keymaps = {
toggle_server_expand = "<CR>",
install_server = "i",
@ -23,9 +19,6 @@ local options = {
cancel_installation = "<C-c>",
},
},
max_concurrent_installers = 10,
}
mason.setup(options)