dotfiles

*nix config files
git clone git://git.pyratebeard.net/dotfiles.git
Log | Files | Refs | README

icons.lua (1568B)


      1 return {
      2 	diagnostics = {
      3 		error = " ",
      4 		hint = " ",
      5 		information = " ",
      6 		other = " ",
      7 		warning = " ",
      8 	},
      9 	git = {
     10 		Added = " ",
     11 		Modified = " ",
     12 		Removed = " ",
     13 	},
     14 	dap = {
     15 		breakpoint = " ",
     16 		breakpoint_condition = " ",
     17 		log_point = " ",
     18 		stopped = " ",
     19 		breakpoint_rejected = " ",
     20 		pause = " ",
     21 		play = " ",
     22 		step_into = " ",
     23 		step_over = " ",
     24 		step_out = " ",
     25 		step_back = " ",
     26 		run_last = " ",
     27 		terminate = " ",
     28 	},
     29 	lazy = {
     30 		cmd = " ",
     31 		config = "",
     32 		event = "",
     33 		ft = " ",
     34 		init = " ",
     35 		import = " ",
     36 		keys = " ",
     37 		lazy = "󰒲 ",
     38 		loaded = "󱄲",
     39 		not_loaded = "󱄯",
     40 		plugin = " ",
     41 		runtime = " ",
     42 		source = " ",
     43 		start = "",
     44 		task = "✔ ",
     45 		list = {
     46 			"󱄰",
     47 			"➜",
     48 			"★",
     49 			"‒",
     50 		},
     51 	},
     52 	mason = {
     53 		package_installed = "󱄲",
     54 		package_pending = "󱄰",
     55 		package_uninstalled = "󱄯",
     56 	},
     57 	borders = {
     58 		dashed = { "┄", "┊", "┄", "┊", "╭", "╮", "╯", "╰", },
     59 		double = { "═", "║", "═", "║", "╔", "╗", "╝", "╚", },
     60 		single = { "─", "│", "─", "│", "╭", "╮", "╯", "╰", },
     61 		blocks = { "▀", "▐", "▄", "▌", "▛", "▜", "▟", "▙", },
     62 		blocky = { "▀", "▐", "▄", "▌", "▄", "▄", "▓", "▀", },
     63 	},
     64 	telescope = {
     65 		prompt = { "┄", "┊", "┄", "┊", "╭", "╮", "╯", "╰", },
     66 		results = { "┄", " ", "┄", "┊", "╭", "┄", "┄", "╰", },
     67 		preview = { "┄", "┊", "┄", "┊", "┄", "╮", "╯", "╰", },
     68 	},
     69 }