1-- ### Text fonts
2
3-- DESCRIPTION:
4-- Fallback icons that will be displayed
5-- if you don't have nerd fonts installed,
6-- or if you set `vim.g.icons_enabled = false` on `../1-options.lua`.
7
8return {
9 ActiveLSP = "LSP:",
10 ArrowLeft = "<",
11 ArrowRight = ">",
12 BufferClose = "x",
13 DapBreakpoint = "B",
14 DapBreakpointCondition = "C",
15 DapBreakpointRejected = "R",
16 DapLogPoint = "L",
17 DapStopped = ">",
18 DefaultFile = "[F]",
19 DiagnosticError = "X",
20 DiagnosticHint = "?",
21 DiagnosticInfo = "i",
22 DiagnosticWarn = "!",
23 Ellipsis = "...",
24 Environment = "Env:",
25 FileModified = "*",
26 FileReadOnly = "[lock]",
27 FoldClosed = "+",
28 FoldOpened = "-",
29 FoldSeparator = " ",
30 FolderClosed = "[D]",
31 FolderEmpty = "[E]",
32 FolderOpen = "[O]",
33 GitAdd = "[+]",
34 GitChange = "[/]",
35 GitConflict = "[!]",
36 GitDelete = "[-]",
37 GitIgnored = "[I]",
38 GitRenamed = "[R]",
39 GitStaged = "[S]",
40 GitUnstaged = "[U]",
41 GitUntracked = "[?]",
42 MacroRecording = "Recording:",
43 Paste = "[PASTE]",
44 Search = "?",
45 Selected = "*",
46 Spellcheck = "[SPELL]",
47 TabClose = "X",
48}