24 lines
504 B
Lua
24 lines
504 B
Lua
|
astronvim.lspkind = astronvim.user_plugin_opts("plugins.lspkind", {
|
|||
|
mode = "symbol",
|
|||
|
symbol_map = {
|
|||
|
NONE = "",
|
|||
|
Array = "",
|
|||
|
Boolean = "⊨",
|
|||
|
Class = "",
|
|||
|
Constructor = "",
|
|||
|
Key = "",
|
|||
|
Namespace = "",
|
|||
|
Null = "NULL",
|
|||
|
Number = "#",
|
|||
|
Object = "⦿",
|
|||
|
Package = "",
|
|||
|
Property = "",
|
|||
|
Reference = "",
|
|||
|
Snippet = "",
|
|||
|
String = "𝓐",
|
|||
|
TypeParameter = "",
|
|||
|
Unit = "",
|
|||
|
},
|
|||
|
})
|
|||
|
require("lspkind").init(astronvim.lspkind)
|