mason.lua 356 B

12345678910111213141516171819
  1. return {
  2. "mason-org/mason.nvim",
  3. opts = {
  4. ui = {
  5. icons = {
  6. package_installed = "✓",
  7. package_pending = "➜",
  8. package_uninstalled = "✗"
  9. }
  10. }
  11. },
  12. config = function()
  13. -- Disable LSPs in diff mode
  14. if(vim.opt.diff:get()) then
  15. return
  16. end
  17. end
  18. }