Did you check docs and existing issues?
Neovim version (nvim -v)
0.10.4
Operating system/version
Arch Linux
Describe the bug
I started with nvim-lua/kickstart.nvim and now moved the plugins in lua/plugins/ filder. See https://github.com/nvim-lua/kickstart.nvim/blob/master/init.lua#L1002 for the icon settings. My init.lua now looks like this:
require('lazy').setup({
{
import = 'plugins',
},
}, {
ui = {
icons = vim.g.have_nerd_font and {} or {
cmd = 'β',
config = 'π ',
event = 'π
',
ft = 'π',
init = 'β',
keys = 'π',
plugin = 'π',
runtime = 'π»',
require = 'π',
source = 'π',
start = 'π',
task = 'π',
lazy = 'π€ ',
},
},
})
The plugins install and load success full. But the Icons I defined in ui.icons won't how up in Lazy Plugin Manager.
Steps To Reproduce
- Get the lua.init from https://github.com/nvim-lua/kickstart.nvim/blob/master/init.lua
- Start Neovim
- Open :Lazy -> You see the icons
- Close Neovim
- Change to my init.lua
- Start Neivom
- Open :Lazy -> You won't see the icons
Expected Behavior
The icons to show in Lazy Plaugin Manager.
Repro
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
if not (vim.uv or vim.loop).fs_stat(lazypath) then
local lazyrepo = 'https://github.com/folke/lazy.nvim.git'
local out = vim.fn.system { 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath }
if vim.v.shell_error ~= 0 then
error('Error cloning lazy.nvim:\n' .. out)
end
end
vim.opt.rtp:prepend(lazypath)
require('lazy').setup({
{
import = 'plugins',
},
}, {
ui = {
icons = vim.g.have_nerd_font and {} or {
cmd = 'β',
config = 'π ',
event = 'π
',
ft = 'π',
init = 'β',
keys = 'π',
plugin = 'π',
runtime = 'π»',
require = 'π',
source = 'π',
start = 'π',
task = 'π',
lazy = 'π€ ',
},
},
})
Did you check docs and existing issues?
Neovim version (nvim -v)
0.10.4
Operating system/version
Arch Linux
Describe the bug
I started with nvim-lua/kickstart.nvim and now moved the plugins in lua/plugins/ filder. See https://github.com/nvim-lua/kickstart.nvim/blob/master/init.lua#L1002 for the icon settings. My init.lua now looks like this:
The plugins install and load success full. But the Icons I defined in ui.icons won't how up in Lazy Plugin Manager.
Steps To Reproduce
Expected Behavior
The icons to show in Lazy Plaugin Manager.
Repro