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

122 lines
3.8 KiB
Lua
Raw Permalink 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 = {}
M.diagnostics = {
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 = '', -- 
Checkmark = '', --  󰄬 󰄬 
ChevronDown = '', -- 
ChevronLeft = '', -- 
ChevronRight = '', -- 
ChevronUp = '', -- 
ChevronSmallDown = '',
ChevronSmallLeft = '',
ChevronSmallRight = '',
ChevronSmallUp = '',
Circle = '',
EmptyFolder = '',
EmptyFolderOpen = '',
File = '', -- 
FileSymlink = '', -- 
Files = '',
Fire = '', -- 
Folder = '󰉋',
FolderOpen = '',
FolderSymlink = '',
Gauge = '󰓅', -- 
LineLeft = '',
LineLeftBold = '',
LineMiddle = '',
LineMiddleBold = '',
Modified = '',
Note = '', -- 
Paste = '',
Play = '',
ReadOnly = '', -- 'RO',
Search = '', -- 
Sleep = '󰒲',
TestTube = '󰙨', -- 󰤑
Warning = '',
}
return M