--[ -- This plugin is responsible of having external tools correctly configured. --] return { "williamboman/mason.nvim", enabled = true, dependencies = { "mason-org/mason-registry", "neovim/nvim-lspconfig", }, config = function() require("mason").setup({ ui = { icons = { package_installed = "✓", package_pending = "➜", package_uninstalled = "✗", }, }, }) end, }