Skip to content

Commit

Permalink
fix(icons): Update icon codepoints
Browse files Browse the repository at this point in the history
  • Loading branch information
Jint-lzxy committed Jan 28, 2023
1 parent 1a8246c commit e88aff1
Showing 1 changed file with 56 additions and 56 deletions.
112 changes: 56 additions & 56 deletions lua/modules/ui/icons.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,33 @@ local icons = {}

local data = {
kind = {
Class = "",
Color = "",
Constant = "",
Class = "󰠱",
Color = "󰏘",
Constant = "󰏿",
Constructor = "",
Enum = "",
EnumMember = "",
Event = "",
Field = "",
File = "",
Folder = "",
Function = "",
Field = "󰇽",
File = "󰈙",
Folder = "󰉋",
Function = "󰊕",
Interface = "",
Keyword = "",
Method = "",
Keyword = "󰌋",
Method = "󰆧",
Module = "",
Namespace = "",
Namespace = "󰌗",
Number = "",
Operator = "",
Operator = "󰆕",
Package = "",
Property = "",
Property = "󰜢",
Reference = "",
Snippet = "",
Struct = "",
Text = "",
TypeParameter = "",
Text = "󰉿",
TypeParameter = "󰅲",
Unit = "",
Value = "",
Value = "󰎠",
Variable = "",
-- ccls-specific icons.
TypeAlias = "",
Expand All @@ -37,34 +37,34 @@ local data = {
Macro = "",
},
type = {
Array = "",
Array = "󰅪",
Boolean = "",
Null = "",
Null = "󰟢",
Number = "",
Object = "",
String = "",
Object = "󰅩",
String = "󰉿",
},
documents = {
Default = "",
File = "",
Files = "",
FileTree = "",
FileTree = "󰙅",
Import = "",
Symlink = "",
},
git = {
Add = "",
Branch = "",
Diff = "",
Git = "",
Git = "󰊢",
Ignore = "",
Mod = "M",
Mod_alt = "",
Remove = "",
Rename = "",
Repo = "",
Unmerged = "",
Untracked = "",
Unmerged = "󰘬",
Untracked = "󰞋",
Unstaged = "",
Staged = "",
Conflict = "",
Expand All @@ -74,55 +74,55 @@ local data = {
ArrowOpen = "",
BigCircle = "",
BigUnfilledCircle = "",
BookMark = "",
BookMark = "󰃃",
Bug = "",
Calendar = "",
Check = "",
Check = "󰄳",
ChevronRight = "",
Circle = "",
Close = "",
Close = "󰅖",
Close_alt = "",
CloudDownload = "",
Comment = "",
CodeAction = "",
Comment = "󰅺",
CodeAction = "󰌵",
Dashboard = "",
Emoji = "",
Emoji = "󰱫",
EmptyFolder = "",
EmptyFolderOpen = "",
File = "",
File = "󰈤",
Fire = "",
Folder = "",
FolderOpen = "",
Gear = "",
History = "",
Incoming = "",
History = "󰄉",
Incoming = "󰏷",
Indicator = "",
Keyboard = "",
Left = "",
List = "",
Square = "",
SymlinkFolder = "",
Lock = "",
Lock = "󰍁",
Modified = "",
Modified_alt = "",
NewFile = "",
Newspaper = "",
Note = "",
Outgoing = "",
Note = "󰍨",
Outgoing = "󰏻",
Package = "",
Pencil = "",
Perf = "",
Pencil = "󰏫",
Perf = "󰅒",
Play = "",
Project = "",
Right = "",
RootFolderOpened = "",
Search = "",
Search = "󰍉",
Separator = "",
DoubleSeparator = "",
DoubleSeparator = "󰄾",
SignIn = "",
SignOut = "",
Sort = "",
Spell = "",
Spell = "󰓆",
Symlink = "",
Table = "",
Telescope = "",
Expand All @@ -132,21 +132,21 @@ local data = {
Warning = "",
Information = "",
Question = "",
Hint = "",
Hint = "󰌵",
-- Holo version
Error_alt = "",
Warning_alt = "",
Error_alt = "󰅚",
Warning_alt = "󰀪",
Information_alt = "",
Question_alt = "",
Hint_alt = "",
Hint_alt = "󰌶",
},
misc = {
Campass = "",
Campass = "󰀹",
Code = "",
EscapeST = "",
Gavel = "",
Glass = "",
PyEnv = "",
Glass = "󰂖",
PyEnv = "󰌠",
Squirrel = "",
Tag = "",
Tree = "",
Expand All @@ -155,7 +155,7 @@ local data = {
Vbar = "",
Add = "+",
Added = "",
Ghost = "",
Ghost = "󰊠",
ManUp = "",
Vim = "",
},
Expand All @@ -166,24 +166,24 @@ local data = {
nvim_lua = "",
path = "",
buffer = "",
spell = "",
luasnip = "",
spell = "󰓆",
luasnip = "󰃐",
treesitter = "",
},
dap = {
Breakpoint = "",
BreakpointCondition = "",
Breakpoint = "󰝥",
BreakpointCondition = "󰟃",
BreakpointRejected = "",
LogPoint = "",
Pause = "",
Play = "",
RunLast = "",
StepBack = "",
StepInto = "",
StepOut = "",
StepOver = "",
StepInto = "󰆹",
StepOut = "󰆸",
StepOver = "󰆷",
Stopped = "",
Terminate = "",
Terminate = "󰝤",
},
}

Expand Down

0 comments on commit e88aff1

Please sign in to comment.