]> git.rmz.io Git - dotfiles.git/blob - nvim/lua/rmz/util/ui.lua
lazyvim: absorb icons into rmz.util.ui
[dotfiles.git] / nvim / lua / rmz / util / ui.lua
1 local M = {}
2
3 -- icons used by other plugins
4 M.icons = {
5 misc = {
6 dots = "󰇘",
7 },
8 ft = {
9 octo = "",
10 },
11 dap = {
12 Stopped = { "󰁕 ", "DiagnosticWarn", "DapStoppedLine" },
13 Breakpoint = " ",
14 BreakpointCondition = " ",
15 BreakpointRejected = { " ", "DiagnosticError" },
16 LogPoint = ".>",
17 },
18 diagnostics = {
19 Error = " ",
20 Warn = " ",
21 Hint = " ",
22 Info = " ",
23 },
24 git = {
25 added = " ",
26 modified = " ",
27 removed = " ",
28 },
29 kinds = {
30 Array = " ",
31 Boolean = "󰨙 ",
32 Class = " ",
33 Codeium = "󰘦 ",
34 Color = " ",
35 Control = " ",
36 Collapsed = " ",
37 Constant = "󰏿 ",
38 Constructor = " ",
39 Copilot = " ",
40 Enum = " ",
41 EnumMember = " ",
42 Event = " ",
43 Field = " ",
44 File = " ",
45 Folder = " ",
46 Function = "󰊕 ",
47 Interface = " ",
48 Key = " ",
49 Keyword = " ",
50 Method = "󰊕 ",
51 Module = " ",
52 Namespace = "󰦮 ",
53 Null = " ",
54 Number = "󰎠 ",
55 Object = " ",
56 Operator = " ",
57 Package = " ",
58 Property = " ",
59 Reference = " ",
60 Snippet = "󱄽 ",
61 String = " ",
62 Struct = "󰆼 ",
63 Supermaven = " ",
64 TabNine = "󰏚 ",
65 Text = " ",
66 TypeParameter = " ",
67 Unit = " ",
68 Value = " ",
69 Variable = "󰀫 ",
70 },
71 }
72 return M