| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- _G.icons = {
- kind = {
- Array = " ",
- Boolean = " ",
- Class = " ",
- Color = " ",
- Constant = " ",
- Constructor = " ",
- Enum = " ",
- EnumMember = " ",
- Event = " ",
- Field = " ",
- File = " ",
- Folder = " ",
- Function = " ",
- Interface = " ",
- Key = " ",
- Keyword = " ",
- Method = " ",
- -- Module = " ",
- Module = " ",
- Namespace = " ",
- Null = " ",
- Number = " ",
- Object = " ",
- Operator = " ",
- Package = " ",
- Property = " ",
- Reference = " ",
- Snippet = " ",
- String = " ",
- Struct = " ",
- Text = " ",
- TypeParameter = " ",
- Unit = " ",
- Value = " ",
- Variable = " ",
- },
- git = {
- LineAdded = " ",
- LineModified = " ",
- LineRemoved = " ",
- FileDeleted = " ",
- FileIgnored = "◌",
- FileRenamed = " ",
- FileStaged = "S",
- FileUnmerged = "",
- FileUnstaged = "",
- FileUntracked = "U",
- Diff = " ",
- Repo = " ",
- Octoface = " ",
- Copilot = " ",
- Branch = "",
- },
- ui = {
- Message = " ",
- ArrowCircleDown = "",
- ArrowCircleLeft = "",
- ArrowCircleRight = "",
- ArrowCircleUp = "",
- BoldArrowDown = "",
- BoldArrowLeft = "",
- BoldArrowRight = "",
- BoldArrowUp = "",
- BoldClose = "",
- BoldDividerLeft = "",
- BoldDividerRight = "",
- BoldLineLeft = "▎",
- BoldLineMiddle = "┃",
- BoldLineDashedMiddle = "┋",
- BookMark = "",
- BoxChecked = " ",
- Bug = " ",
- Stacks = "",
- Scopes = "",
- Watches = "",
- DebugConsole = " ",
- Calendar = " ",
- Check = "",
- ChevronRight = "",
- ChevronShortDown = "",
- ChevronShortLeft = "",
- ChevronShortRight = "",
- ChevronShortUp = "",
- Circle = " ",
- Close = "",
- CloudDownload = " ",
- Code = "",
- Comment = "",
- Dashboard = "",
- DividerLeft = "",
- DividerRight = "",
- DoubleChevronRight = "»",
- Ellipsis = "",
- EmptyFolder = " ",
- EmptyFolderOpen = " ",
- File = " ",
- FileSymlink = "",
- Files = " ",
- FindFile = "",
- FindText = "",
- Fire = "",
- Folder = " ",
- FolderOpen = " ",
- FolderSymlink = " ",
- Forward = " ",
- Gear = " ",
- History = " ",
- Lightbulb = " ",
- LineLeft = "▏",
- LineMiddle = "│",
- List = " ",
- Lock = " ",
- NewFile = " ",
- Note = " ",
- Package = " ",
- Pencil = " ",
- Plus = " ",
- Project = " ",
- Search = " ",
- SignIn = " ",
- SignOut = " ",
- Tab = " ",
- Table = " ",
- Target = " ",
- Telescope = "🔭",
- Text = " ",
- Tree = "",
- Triangle = "",
- TriangleShortArrowDown = "",
- TriangleShortArrowLeft = "",
- TriangleShortArrowRight = "",
- TriangleShortArrowUp = "",
- },
- diagnostics = {
- BoldError = "",
- Error = "",
- BoldWarning = "",
- Warning = "",
- BoldInformation = "",
- Information = "",
- BoldQuestion = "",
- Question = "",
- BoldHint = "",
- Hint = "",
- Debug = "",
- Trace = "✎",
- },
- misc = {
- Robot = " ",
- Squirrel = " ",
- Tag = " ",
- Watch = "",
- Smiley = " ",
- Package = " ",
- CircuitBoard = " ",
- },
- }
|