diff options
| author | Nanderty <psopka@sopka.ch> | 2023-03-21 19:22:45 +0100 |
|---|---|---|
| committer | Nanderty <psopka@sopka.ch> | 2023-03-21 19:22:45 +0100 |
| commit | 425f6135ec366b9c38b00c8936ad728dbf377714 (patch) | |
| tree | be0d634a80ddac7c1deb569a492ca3e8b63a6765 /lua/icons.lua | |
| parent | 0cbfb1248476aa278c1567deeb4021e68703d7e2 (diff) | |
| download | neovim-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.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 = ' ', + }, +} |
