icons.lua 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. _G.icons = {
  2. kind = {
  3. Array = " ",
  4. Boolean = " ",
  5. Class = " ",
  6. Color = " ",
  7. Constant = " ",
  8. Constructor = " ",
  9. Enum = " ",
  10. EnumMember = " ",
  11. Event = " ",
  12. Field = " ",
  13. File = " ",
  14. Folder = "󰉋 ",
  15. Function = " ",
  16. Interface = " ",
  17. Key = " ",
  18. Keyword = " ",
  19. Method = " ",
  20. -- Module = " ",
  21. Module = " ",
  22. Namespace = " ",
  23. Null = "󰟢 ",
  24. Number = " ",
  25. Object = " ",
  26. Operator = " ",
  27. Package = " ",
  28. Property = " ",
  29. Reference = " ",
  30. Snippet = " ",
  31. String = " ",
  32. Struct = " ",
  33. Text = " ",
  34. TypeParameter = " ",
  35. Unit = " ",
  36. Value = " ",
  37. Variable = " ",
  38. },
  39. git = {
  40. LineAdded = " ",
  41. LineModified = " ",
  42. LineRemoved = " ",
  43. FileDeleted = " ",
  44. FileIgnored = "◌",
  45. FileRenamed = " ",
  46. FileStaged = "S",
  47. FileUnmerged = "",
  48. FileUnstaged = "",
  49. FileUntracked = "U",
  50. Diff = " ",
  51. Repo = " ",
  52. Octoface = " ",
  53. Copilot = " ",
  54. Branch = "",
  55. },
  56. ui = {
  57. Message = "󰍡 ",
  58. ArrowCircleDown = "",
  59. ArrowCircleLeft = "",
  60. ArrowCircleRight = "",
  61. ArrowCircleUp = "",
  62. BoldArrowDown = "",
  63. BoldArrowLeft = "",
  64. BoldArrowRight = "",
  65. BoldArrowUp = "",
  66. BoldClose = "",
  67. BoldDividerLeft = "",
  68. BoldDividerRight = "",
  69. BoldLineLeft = "▎",
  70. BoldLineMiddle = "┃",
  71. BoldLineDashedMiddle = "┋",
  72. BookMark = "",
  73. BoxChecked = " ",
  74. Bug = " ",
  75. Stacks = "",
  76. Scopes = "",
  77. Watches = "󰂥",
  78. DebugConsole = " ",
  79. Calendar = " ",
  80. Check = "",
  81. ChevronRight = "",
  82. ChevronShortDown = "",
  83. ChevronShortLeft = "",
  84. ChevronShortRight = "",
  85. ChevronShortUp = "",
  86. Circle = " ",
  87. Close = "󰅖",
  88. CloudDownload = " ",
  89. Code = "",
  90. Comment = "",
  91. Dashboard = "",
  92. DividerLeft = "",
  93. DividerRight = "",
  94. DoubleChevronRight = "»",
  95. Ellipsis = "",
  96. EmptyFolder = " ",
  97. EmptyFolderOpen = " ",
  98. File = " ",
  99. FileSymlink = "",
  100. Files = " ",
  101. FindFile = "󰈞",
  102. FindText = "󰊄",
  103. Fire = "",
  104. Folder = "󰉋 ",
  105. FolderOpen = " ",
  106. FolderSymlink = " ",
  107. Forward = " ",
  108. Gear = " ",
  109. History = " ",
  110. Lightbulb = " ",
  111. LineLeft = "▏",
  112. LineMiddle = "│",
  113. List = " ",
  114. Lock = " ",
  115. NewFile = " ",
  116. Note = " ",
  117. Package = " ",
  118. Pencil = "󰏫 ",
  119. Plus = " ",
  120. Project = " ",
  121. Search = " ",
  122. SignIn = " ",
  123. SignOut = " ",
  124. Tab = "󰌒 ",
  125. Table = " ",
  126. Target = "󰀘 ",
  127. Telescope = "🔭",
  128. Text = " ",
  129. Tree = "",
  130. Triangle = "󰐊",
  131. TriangleShortArrowDown = "",
  132. TriangleShortArrowLeft = "",
  133. TriangleShortArrowRight = "",
  134. TriangleShortArrowUp = "",
  135. },
  136. diagnostics = {
  137. BoldError = "",
  138. Error = "",
  139. BoldWarning = "",
  140. Warning = "",
  141. BoldInformation = "",
  142. Information = "",
  143. BoldQuestion = "",
  144. Question = "",
  145. BoldHint = "",
  146. Hint = "󰌶",
  147. Debug = "",
  148. Trace = "✎",
  149. },
  150. misc = {
  151. Robot = "󰚩 ",
  152. Squirrel = " ",
  153. Tag = " ",
  154. Watch = "",
  155. Smiley = " ",
  156. Package = " ",
  157. CircuitBoard = " ",
  158. },
  159. }