dotfiles/config/nvim/lua/fschauen/util/icons.lua

154 lines
4.6 KiB
Lua
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

local M = {}
-- stylua: ignore start
M.diagnostics = {
Debug = "",
Error = "",
Hint = "",
Info = "",
Trace = "",
Warn = "",
}
M.diagnostics_bold = {
Debug = "",
Error = "",
Hint = "󰌵 ",
Info = "",
Trace = "",
Warn = "",
}
M.git = {
Branch = "󰘬", -- 
file = {
Deleted = "", -- 
Ignored = "",
Renamed = "", -- 
Staged = "", -- S
Unmerged = "", -- 
Unstaged = "", -- 
Untracked = "", -- U
}
}
-- Custom mix of lspkind defaults and VS Code codicons :)
M.kind = {
Array = "",
Boolean = "",
Class = "",
Color = "",
Constant = "󰏿 ", -- 
Constructor = "",
Copilot = "",
Enum = "", -- 
EnumMember = "", -- 
Event = "",
Field = "",
File = "",
Folder = "", -- 󰉋
Function = "󰊕 ", -- 
Interface = "",
Key = "",
Keyword = "",
Method = "",
Module = "",
Namespace = "",
Null = "", -- 󰟢
Number = "",
Object = "",
Operator = "",
Package = "",
Property = "",
Reference = "", -- 
Snippet = "",
String = "",
Struct = "",
Text = "",
TypeParameter = "",
Unit = "",
Value = "󰎠 ",
Variable = "󰀫 ", -- 
}
M.modes = {
Normal = "", -- "Normal " "n"
OperatorPending = "", -- "O-Pend " "no"
NormalI = "", -- "Normal " "ni" (normal via i_CTRL-O)
Visual = "󰒉", -- "Visual " "v"
VisualBlock = "󰩭", -- "V-Block" ""
Select = "󰒉", -- "Select " "s"
SelectBlock = "󰩭", -- "S-Block" ""
Insert = "", -- "Insert " "i"
Replace = "󰄾", -- "Replace" "r"
VirtualReplace = "󰶻", -- "V-Repl " "rv"
Command = "", -- "Command" "c"
Ex = "", -- " Ex " "cv"
modeore = "", -- " modeore "rm" (modeORE)
Confirm = "󰭚", -- "Confirm" "r?" (:confirm)
Shell = "", -- " Shell " "!" (external command executing)
Terminal = "", -- " Term " "t"
}
M.ui = {
Attention = "",
Bug = "", -- 
Checkbox = "", --  󰄬 󰄬 
Checkmark = "", --  󰄬 󰄬 
ChevronDown = "", -- 
ChevronLeft = "", -- 
ChevronRight = "", -- 
ChevronSmallDown = "",
ChevronSmallLeft = "",
ChevronSmallRight = "",
ChevronSmallUp = "",
ChevronUp = "", -- 
Circle = "",
Comment = "",
Comments = "",
Decrement = "",
Diagnostic = "",
EmptyFolder = "",
EmptyFolderOpen = "",
File = "", -- 
FileSymlink = "", -- 
FileTree = "󰙅",
Files = "",
Fire = "", -- 
Folder = "󰉋",
FolderOpen = "",
FolderSymlink = "",
Format = "󰉼",
Gauge = "󰓅", -- 
Git = "",
Graph = "󱁊",
Increment = "",
LineLeft = "",
LineLeftBold = "",
LineMiddle = "",
LineMiddleBold = "",
Lint = "",
Markdown = "",
Modified = "",
Note = "", -- 
Paste = "",
Play = "",
ReadOnly = "", -- "RO",
Search = "", -- 
Sleep = "󰒲",
Telescope = "",
TestTube = "󰙨", -- 󰤑
Text = "󰬴",
Toggle = "󰨚",
TrafficLight = "󱠪",
Tree = "",
Undo = "󰕌",
Warning = "",
Web = "󰖟",
Whitespace = "󱁐",
}
-- stylua: ignore end
return M