refactor: clean up icons (#219)

The icon list had several values that are not SymbolKind, they were
CompletionItemKind (which we don't need). I've removed those values, and
also added nerd font icons for SymbolKinds that didn't have them before.
This commit is contained in:
Steven Arcangeli 2023-02-14 08:57:09 -08:00
parent 06c6b4c8eb
commit 89031be806

View file

@ -305,33 +305,33 @@ local plain_icons = {
-- stylua: ignore
local nerd_icons = {
Class = " ",
Color = " ",
Constant = " ",
Constructor = " ",
Enum = " ",
EnumMember = "",
Event = " ",
Field = " ",
File = " ",
Folder = " ",
Function = "",
Interface = "",
Keyword = "",
Method = "",
Module = "",
Operator = " ",
Package = " ",
Property = " ",
Reference = " ",
Snippet = " ",
String = " ",
Struct = " ",
Text = " ",
Unit = "",
Value = " ",
Variable = "",
Collapsed = "",
Array = "󱡠 ",
Boolean = "󰨙 ",
Class = " ",
Constant = " ",
Constructor = " ",
Enum = "",
EnumMember = " ",
Event = " ",
Field = " ",
File = " ",
Function = "",
Interface = "",
Key = "",
Method = "",
Module = "",
Namespace = "󰦮 ",
Null = "󰟢 ",
Number = "󰎠 ",
Object = " ",
Operator = " ",
Package = " ",
Property = " ",
String = " ",
Struct = "",
TypeParameter = "󰗴 ",
Variable = "",
Collapsed = "",
}
local M = {}