summaryrefslogtreecommitdiffstats
path: root/lua/icons.lua
diff options
context:
space:
mode:
authorNanderty <psopka@sopka.ch>2023-03-21 19:22:45 +0100
committerNanderty <psopka@sopka.ch>2023-03-21 19:22:45 +0100
commit425f6135ec366b9c38b00c8936ad728dbf377714 (patch)
treebe0d634a80ddac7c1deb569a492ca3e8b63a6765 /lua/icons.lua
parent0cbfb1248476aa278c1567deeb4021e68703d7e2 (diff)
downloadneovim-config-425f6135ec366b9c38b00c8936ad728dbf377714.tar.gz
neovim-config-425f6135ec366b9c38b00c8936ad728dbf377714.tar.bz2
neovim-config-425f6135ec366b9c38b00c8936ad728dbf377714.zip
lazy all
Diffstat (limited to 'lua/icons.lua')
-rw-r--r--lua/icons.lua39
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 = ' ',
+ },
+}