diff options
Diffstat (limited to 'lua/icons.lua')
| -rw-r--r-- | lua/icons.lua | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/lua/icons.lua b/lua/icons.lua new file mode 100644 index 0000000..b53532d --- /dev/null +++ b/lua/icons.lua @@ -0,0 +1,39 @@ +return { + kinds = { + 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 = ' ', + }, +} |
