devconf/shell/.config/nvim/lua/base/icons/icons.lua
Leon Grünewald 58c926ddbf Add NormalVim
2025-08-28 12:28:21 +02:00

133 lines
2.7 KiB
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- ### Icons
-- DESCRIPTION:
-- Here you can change the icons displayed in NormalNvim.
--
-- If you can't see the default icons:
-- Install nerd fonts and set it as your term font: https://www.nerdfonts.com/
-- Sections:
-- -> which-key
-- -> heirline-components (tabline)
-- -> heirline-components (winbar)
-- -> heirline-components (statuscolumn)
-- -> heirline-components (statusline)
-- -> heirline-components (misc)
-- -> Neotree
-- -> Git
-- -> DAP
-- -> Telescope
-- -> Nvim-lightbulb
-- -> Alpha
-- -> Mason
-- -> Render-markdown
return {
-- Which-key
Debugger = "",
Run = "󰑮",
Find = "",
Session = "󱂬",
Sort = "󰒺",
Buffer = "󰓩",
Terminal = "",
UI = "",
Test = "󰙨",
Packages = "󰏖",
Docs = "",
Git = "󰊢",
LSP = "",
-- Heirline-components - tabline
BufferClose = "󰅖",
FileModified = "",
FileReadOnly = "",
ArrowLeft = "",
ArrowRight = "",
TabClose = "󰅙",
-- Heirline-components - winbar
CompilerPlay = "",
CompilerStop = "",
CompilerRedo = "",
NeoTree = "",
Aerial = "" ,
ZenMode = "󰰶",
BufWrite = "",
BufWriteAll = "",
Ellipsis = "",
BreadcrumbSeparator = "",
-- Heirline-components - statuscolumn
FoldClosed = "",
FoldOpened = "",
FoldSeparator = " ",
-- Heirline-components - statusline
ActiveLSP = "",
ActiveTS = "",
Environment = "",
DiagnosticError = "",
DiagnosticHint = "󰌵",
DiagnosticInfo = "󰋼",
DiagnosticWarn = "",
LSPLoading1 = "",
LSPLoading2 = "󰀚",
LSPLoading3 = "",
SearchCount = "",
MacroRecording = "",
ToggleResults = "󰑮",
-- Heirline-components - misc
Paste = "󰅌",
PathSeparator = "",
-- Neotree
FolderClosed = "",
FolderEmpty = "",
FolderOpen = "",
Diagnostic = "󰒡",
DefaultFile = "󰈙",
-- Git
GitBranch = "",
GitAdd = "",
GitChange = "",
GitDelete = "",
GitConflict = "",
GitIgnored = "",
GitRenamed = "",
GitSign = "",
GitStaged = "",
GitUnstaged = "",
GitUntracked = "",
-- DAP
DapBreakpoint = "",
DapBreakpointCondition = "",
DapBreakpointRejected = "",
DapLogPoint = ".>",
DapStopped = "󰁕",
-- Telescope
PromptPrefix = "",
-- Nvim-lightbulb
Lightbulb = "💡",
-- Alpha
GreeterNew = "📄",
GreeterRecent = "🌺",
GreeterYazi = "🦆",
GreeterSessions = "🔎",
GreeterProjects = "💼",
GreeterPlug = "",
-- Mason
MasonInstalled = "",
MasonUninstalled = "",
MasonPending = "",
-- Render-markdown
RenderMarkdown = { '', '', '󰲥 ', '󰲧 ', '󰲩 ', '󰲫 ' }
}