mirror of
https://github.com/d0zingcat/dotfiles.git
synced 2026-05-13 15:09:34 +00:00
16 lines
391 B
Lua
16 lines
391 B
Lua
local api = vim.api
|
|
|
|
api.nvim_exec(
|
|
[[
|
|
" Ensure you have installed some decent font to show these pretty symbols, then you can enable icon for the kind.
|
|
let g:vista#renderer#enable_icon = 1
|
|
|
|
" The default icons can't be suitable for all the filetypes, you can extend it as you wish.
|
|
let g:vista#renderer#icons = {
|
|
\ "function": "\uf794",
|
|
\ "variable": "\uf71b",
|
|
\ }
|
|
]],
|
|
false
|
|
)
|