39 lines
855 B
Lua
39 lines
855 B
Lua
|
return {
|
||
|
ActiveLSP = "LSP:",
|
||
|
ArrowLeft = "<",
|
||
|
ArrowRight = ">",
|
||
|
BufferClose = "x",
|
||
|
DapBreakpoint = "B",
|
||
|
DapBreakpointCondition = "C",
|
||
|
DapBreakpointRejected = "R",
|
||
|
DapLogPoint = "L",
|
||
|
DapStopped = ">",
|
||
|
DefaultFile = "[F]",
|
||
|
DiagnosticError = "X",
|
||
|
DiagnosticHint = "?",
|
||
|
DiagnosticInfo = "i",
|
||
|
DiagnosticWarn = "!",
|
||
|
Ellipsis = "...",
|
||
|
FileModified = "*",
|
||
|
FileReadOnly = "[lock]",
|
||
|
FolderClosed = "[D]",
|
||
|
FolderEmpty = "[E]",
|
||
|
FolderOpen = "[O]",
|
||
|
GitAdd = "[+]",
|
||
|
GitChange = "[/]",
|
||
|
GitConflict = "[!]",
|
||
|
GitDelete = "[-]",
|
||
|
GitIgnored = "[I]",
|
||
|
GitRenamed = "[R]",
|
||
|
GitStaged = "[S]",
|
||
|
GitUnstaged = "[U]",
|
||
|
GitUntracked = "[?]",
|
||
|
MacroRecording = "Recording:",
|
||
|
NeovimClose = "X", -- TODO v3: remove this icon
|
||
|
Paste = "[PASTE]",
|
||
|
Search = "?",
|
||
|
Selected = "*",
|
||
|
Spellcheck = "[SPELL]",
|
||
|
TabClose = "X",
|
||
|
}
|