Skip to content

Commit

Permalink
icons: cleanup icons and highlights
Browse files Browse the repository at this point in the history
Signed-off-by: ldelossa <[email protected]>
  • Loading branch information
ldelossa committed Nov 24, 2021
1 parent fc50810 commit 9d75ab8
Showing 1 changed file with 97 additions and 126 deletions.
223 changes: 97 additions & 126 deletions lua/calltree.lua
Original file line number Diff line number Diff line change
Expand Up @@ -101,138 +101,109 @@ M.active_icon_set = {}
-- alot of these are yoinked from:
-- https://github.com/onsails/lspkind-nvim/blob/master/lua/lspkind/init.lua
M.nerd = {
Text = "",
Method = "",
Function = "",
Constructor = "",
Field = "",
Variable = "",
Class = "",
Interface = "",
Module = "",
Namespace = "",
Package = "",
Object = "",
Property = "",
Unit = "",
Value = "",
Enum = "",
Keyword = "",
Snippet = "",
Color = "",
File = "",
Reference = "",
Folder = "",
EnumMember = "",
Constant = "",
Struct = "",
Event = "",
Operator = "",
TypeParameter = "",
Array = "",
Key = "",
Null = "",
Array = "",
Class = "",
Color = "",
Constant = "",
Constructor = "",
Enum = "",
EnumMember = "",
Event = "",
Field = "",
File = "",
Folder = "",
Function = "",
Interface = "",
Key = "",
Keyword = "",
Method = "",
Module = "",
Namespace = "",
Null = "",
Object = "",
Operator = "",
Package = "",
Property = "",
Reference = "",
Snippet = "",
Struct = "",
Text = "",
TypeParameter = "",
Unit = "",
Value = "",
Variable = "",
}

M.codicons = {
Text = "",
Method = "",
Function = "",
Constructor = "",
Field = "",
Variable = "",
Class = "",
Interface = "",
Module = "",
Namespace = "",
Object = "",
Package = "",
Property = "",
Unit = "",
Value = "",
Enum = "",
Keyword = "",
Snippet = "",
Color = "",
File = "",
Reference = "",
Folder = "",
EnumMember = "",
Constant = "",
Struct = "",
Event = "",
Operator = "",
TypeParameter = "",
Array = "",
Key = "",
Null = "",
Collapsed = "",
Expanded = ""
Array = "",
Class = "",
Collapsed = "",
Color = "",
Constant = "",
Constructor = "",
Enum = "",
EnumMember = "",
Event = "",
Expanded = "",
Field = "",
File = "",
Folder = "",
Function = "",
Interface = "",
Key = "",
Keyword = "",
Method = "",
Module = "",
Namespace = "",
Null = "",
Object = "",
Operator = "",
Package = "",
Property = "",
Reference = "",
Snippet = "",
Struct = "",
Text = "",
TypeParameter = "",
Unit = "",
Value = "",
Variable = "",
}

M.icon_hls = {
Text = "",
Method = "",
Function = "",
Constructor = "",
Field = "",
Variable = "",
Class = "",
Interface = "",
Module = "",
Namespace = "",
Object = "",
Package = "",
Property = "",
Unit = "",
Value = "",
Enum = "",
Keyword = "",
Snippet = "",
Color = "",
File = "",
Reference = "",
Folder = "",
EnumMember = "",
Constant = "",
Struct = "",
Event = "",
Operator = "",
TypeParameter = "",
Array = "",
Key = "",
Null = "",
Collapsed = "",
Expanded = ""
}

M.icon_hls = {
File = "CTURI",
Module = "CTNamespace",
Namespace = "CTNamespace",
Package = "CTNamespace",
Class = "CTType",
Method = "CTMethod",
Property = "CTMethod",
Field = "CTField",
Constructor = "CTConstructor",
Enum = "CTType",
Interface = "CTType",
Function = "CTFunction",
Variable = "CTConstant",
Constant = "CTConstant",
String = "CTString",
Number = "CTNumber",
Boolean = "CTBoolean",
Array = "CTConstant",
Object = "CTType",
Key = "CTType",
Null = "CTType",
EnumMember = "CTField",
Struct = "CTType",
Event = "CTType",
Operator = "CTOperator",
TypeParameter = "CTParameter",
Array = "CTConstant",
Boolean = "CTBoolean",
Class = "CTType",
Constant = "CTConstant",
Constructor = "CTFunction",
Enum = "CTType",
EnumMember = "CTField",
Event = "CTType",
Field = "CTField",
File = "CTURI",
Folder = "CTNamespace",
Function = "CTFunction",
Interface = "CTType",
Key = "CTType",
Keyword = "CTConstant",
Method = "CTFunction",
Module = "CTNamespace",
Namespace = "CTNamespace",
Null = "CTType",
Number = "CTNumber",
Object = "CTType",
Operator = "CTOperator",
Package = "CTNamespace",
Property = "CTMethod",
Reference = "CTType",
Snippet = "CTString",
String = "CTString",
Struct = "CTType",
Text = "CTString",
TypeParameter = "CTParameter",
Unit = "CTType",
Value = "CTType",
Variable = "CTConstant"
}

M.hls = {
Expand Down

0 comments on commit 9d75ab8

Please sign in to comment.