summaryrefslogtreecommitdiff
path: root/lua/lvim/icons.lua
diff options
context:
space:
mode:
authorPhilippe Richard <[email protected]>2022-10-02 23:48:23 -0400
committerGitHub <[email protected]>2022-10-02 23:48:23 -0400
commit8767a17b5e6087153494a5cd30e5ae0c5165c9af (patch)
tree40f57839009330a85471662acf12f87f6e46017d /lua/lvim/icons.lua
parent228658b02e083d0294b737b39275f3b62c007b94 (diff)
feat: move icons to a single icons file (#3115)
Diffstat (limited to 'lua/lvim/icons.lua')
-rw-r--r--lua/lvim/icons.lua141
1 files changed, 141 insertions, 0 deletions
diff --git a/lua/lvim/icons.lua b/lua/lvim/icons.lua
new file mode 100644
index 00000000..bfb1e4b9
--- /dev/null
+++ b/lua/lvim/icons.lua
@@ -0,0 +1,141 @@
+return {
+ kind = {
+ Array = "๏™ง",
+ Boolean = "๏จ ",
+ Class = "๏ –",
+ Color = "๏ฃ—",
+ Constant = "๏›ผ",
+ Constructor = "๏šฆ",
+ 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 = "๎œ–",
+ },
+ git = {
+ LineAdded = "๏‘—",
+ LineModified = "๏‘™",
+ LineRemoved = "๏‘˜",
+ FileDeleted = "๏‘˜",
+ FileIgnored = "โ—Œ",
+ FileRenamed = "โžœ",
+ FileStaged = "S",
+ FileUnmerged = "๎œง",
+ FileUnstaged = "๏‘„",
+ FileUntracked = "U",
+ Diff = "๏‘€",
+ Repo = "๏",
+ Octoface = "๏†",
+ Branch = "๎œฅ",
+ },
+ ui = {
+ ArrowCircleDown = "๏‚ซ",
+ ArrowCircleLeft = "๏‚จ",
+ ArrowCircleRight = "๏‚ฉ",
+ ArrowCircleUp = "๏‚ช",
+ BoldArrowDown = "๏ฃ",
+ BoldArrowLeft = "๏ ",
+ BoldArrowRight = "๏ก",
+ BoldArrowUp = "๏ข",
+ BoldClose = "๏€",
+ BoldDividerLeft = "๎‚ฒ",
+ BoldDividerRight = "๎‚ฐ",
+ BoldLineLeft = "โ–Ž",
+ BookMark = "๏‚—",
+ BoxChecked = "๏†",
+ Bug = "๏†ˆ",
+ Calendar = "๏ณ",
+ Check = "๏˜ซ",
+ ChevronRight = ">",
+ ChevronShortDown = "๏‘ผ",
+ ChevronShortLeft = "๏‘ฝ",
+ ChevronShortRight = "๏‘ ",
+ ChevronShortUp = "๏‘ป",
+ Circle = "๏„‘",
+ Close = "๏™•",
+ CloudDownload = "๏‰",
+ Code = "๎ž–",
+ Comment = "๏™น",
+ Dashboard = "๏‘ฃ",
+ DividerLeft = "๎‚ณ",
+ DividerRight = "๎‚ฑ",
+ DoubleChevronRight = "ยป",
+ Ellipsis = "โ€ฆ",
+ EmptyFolder = "๏„”",
+ EmptyFolderOpen = "๏„•",
+ File = "๏œ“",
+ FileSymlink = "๏’",
+ Files = "๏œก",
+ FindFile = "๏œ",
+ FindText = "๏žƒ",
+ Fire = "๏’",
+ Folder = "๏Š",
+ FolderOpen = "๏ผ",
+ FolderSymlink = "๏’‚",
+ Forward = "๏ค",
+ Gear = "๏ฃ",
+ History = "๏˜ˆ",
+ Lightbulb = "๏ ด",
+ LineLeft = "โ–",
+ LineMiddle = "โ”‚",
+ List = "๏€ข",
+ Lock = "๏ก€",
+ NewFile = "๏…›",
+ Note = "๏ข",
+ Package = "๏’‡",
+ Pencil = "๏ฃช",
+ Plus = "๏‘",
+ Project = "๏",
+ Search = "๏กˆ",
+ SignIn = "๏ช",
+ SignOut = "๏ฆ",
+ Tab = "๏ ‘",
+ Table = "๏ƒŽ",
+ Target = "๏”—",
+ Telescope = "๏‘ซ",
+ Text = "๎˜’",
+ Tree = "๏†ป",
+ Triangle = "๏ค‰",
+ TriangleShortArrowDown = "๏‘‹",
+ TriangleShortArrowLeft = "๏ธ",
+ TriangleShortArrowRight = "๏‘Š",
+ TriangleShortArrowUp = "๏‘พ",
+ },
+ diagnostics = {
+ BoldError = "๏—",
+ Error = "๏™™",
+ BoldWarning = "๏ฑ",
+ Warning = "๏”ฉ",
+ BoldInformation = "๏š",
+ Information = "๏Ÿผ",
+ BoldQuestion = "๏™",
+ Question = "๏Šœ",
+ BoldHint = "๏ ด",
+ Hint = "๏ ต",
+ Debug = "๏†ˆ",
+ Trace = "โœŽ",
+ },
+}