| 12345678910111213141516171819 |
- return {
- "mason-org/mason.nvim",
- opts = {
- ui = {
- icons = {
- package_installed = "✓",
- package_pending = "➜",
- package_uninstalled = "✗"
- }
- }
- },
- config = function()
- -- Disable LSPs in diff mode
- if(vim.opt.diff:get()) then
- return
- end
- end
- }
|