neovim

mrgrouse's beloved, handmade neovim configuration
Log | Files | Refs | README

mason.lua (310B)


      1 return {
      2 	"williamboman/mason.nvim",
      3 	config = function()
      4 		-- import mason
      5 		local mason = require("mason")
      6 
      7 		-- enable mason and configure icons
      8 		mason.setup({
      9 			ui = {
     10 				icons = {
     11 					package_installed = "✓",
     12 					package_pending = "➜",
     13 					package_uninstalled = "✗",
     14 				},
     15 			},
     16 		})
     17 	end,
     18 }