Squashed 'users/configs/system/nvim/nvim/' content from commit e088bce2
git-subtree-dir: users/configs/system/nvim/nvim git-subtree-split: e088bce2bd90c0b5c35d13a8615a55455b96294d
This commit is contained in:
60
lua/astronvim/icons/nerd_font.lua
Normal file
60
lua/astronvim/icons/nerd_font.lua
Normal file
@@ -0,0 +1,60 @@
|
||||
return {
|
||||
ActiveLSP = "",
|
||||
ActiveTS = "",
|
||||
ArrowLeft = "",
|
||||
ArrowRight = "",
|
||||
Bookmarks = "",
|
||||
BufferClose = "",
|
||||
DapBreakpoint = "",
|
||||
DapBreakpointCondition = "",
|
||||
DapBreakpointRejected = "",
|
||||
DapLogPoint = ".>",
|
||||
DapStopped = "",
|
||||
Debugger = "",
|
||||
DefaultFile = "",
|
||||
Diagnostic = "",
|
||||
DiagnosticError = "",
|
||||
DiagnosticHint = "",
|
||||
DiagnosticInfo = "",
|
||||
DiagnosticWarn = "",
|
||||
Ellipsis = "…",
|
||||
FileNew = "",
|
||||
FileModified = "",
|
||||
FileReadOnly = "",
|
||||
FoldClosed = "",
|
||||
FoldOpened = "",
|
||||
FoldSeparator = " ",
|
||||
FolderClosed = "",
|
||||
FolderEmpty = "",
|
||||
FolderOpen = "",
|
||||
Git = "",
|
||||
GitAdd = "",
|
||||
GitBranch = "",
|
||||
GitChange = "",
|
||||
GitConflict = "",
|
||||
GitDelete = "",
|
||||
GitIgnored = "◌",
|
||||
GitRenamed = "➜",
|
||||
GitSign = "▎",
|
||||
GitStaged = "✓",
|
||||
GitUnstaged = "✗",
|
||||
GitUntracked = "★",
|
||||
LSPLoaded = "", -- TODO: Remove unused icon in AstroNvim v4
|
||||
LSPLoading1 = "",
|
||||
LSPLoading2 = "",
|
||||
LSPLoading3 = "",
|
||||
MacroRecording = "",
|
||||
Package = "",
|
||||
Paste = "",
|
||||
Refresh = "",
|
||||
Search = "",
|
||||
Selected = "❯",
|
||||
Session = "",
|
||||
Sort = "",
|
||||
Spellcheck = "",
|
||||
Tab = "",
|
||||
TabClose = "",
|
||||
Terminal = "",
|
||||
Window = "",
|
||||
WordFile = "",
|
||||
}
|
||||
41
lua/astronvim/icons/text.lua
Normal file
41
lua/astronvim/icons/text.lua
Normal file
@@ -0,0 +1,41 @@
|
||||
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]",
|
||||
FoldClosed = "+",
|
||||
FoldOpened = "-",
|
||||
FoldSeparator = " ",
|
||||
FolderClosed = "[D]",
|
||||
FolderEmpty = "[E]",
|
||||
FolderOpen = "[O]",
|
||||
GitAdd = "[+]",
|
||||
GitChange = "[/]",
|
||||
GitConflict = "[!]",
|
||||
GitDelete = "[-]",
|
||||
GitIgnored = "[I]",
|
||||
GitRenamed = "[R]",
|
||||
GitSign = "|",
|
||||
GitStaged = "[S]",
|
||||
GitUnstaged = "[U]",
|
||||
GitUntracked = "[?]",
|
||||
MacroRecording = "Recording:",
|
||||
Paste = "[PASTE]",
|
||||
Search = "?",
|
||||
Selected = "*",
|
||||
Spellcheck = "[SPELL]",
|
||||
TabClose = "X",
|
||||
}
|
||||
Reference in New Issue
Block a user