Files
dotfiles/nvim/lua/config/vista.lua
Lee Tang 6fa77b0a86 init
2022-03-12 16:29:04 +08:00

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
)