mirror of
https://github.com/ivuorinen/astronvim_config.git
synced 2026-01-26 11:24:07 +00:00
32 lines
647 B
Lua
32 lines
647 B
Lua
return function(config)
|
|
config.preset = "codicons"
|
|
config.symbol_map = {
|
|
Text = " ",
|
|
Method = " ",
|
|
Function = " ",
|
|
Constructor = " ",
|
|
Field = " ",
|
|
Variable = " ",
|
|
Class = " ",
|
|
Interface = " ",
|
|
Module = " ",
|
|
Property = " ",
|
|
Unit = " ",
|
|
Value = " ",
|
|
Enum = " ",
|
|
Keyword = " ",
|
|
Snippet = " ",
|
|
Color = " ",
|
|
File = " ",
|
|
Reference = " ",
|
|
Folder = " ",
|
|
EnumMember = " ",
|
|
Constant = " ",
|
|
Struct = " ",
|
|
Event = " ",
|
|
Operator = " ",
|
|
TypeParameter = " ",
|
|
}
|
|
return config
|
|
end
|