diff options
| author | nsfisis <nsfisis@gmail.com> | 2023-08-21 21:58:03 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2023-08-21 21:58:03 +0900 |
| commit | ed435e330558cb7649a807a90945091576b8c0de (patch) | |
| tree | 2bdd8a113392f3168ed26b178c8f927c6bffc8d6 | |
| parent | efc4991a8c9a176038aace74b47a841ee27eafc8 (diff) | |
| download | dotfiles-ed435e330558cb7649a807a90945091576b8c0de.tar.gz dotfiles-ed435e330558cb7649a807a90945091576b8c0de.tar.zst dotfiles-ed435e330558cb7649a807a90945091576b8c0de.zip | |
neovim:lazy.nvim: do not use NerdFont icons in :Lazy window
| -rw-r--r-- | .config/nvim/lua/init/06-plugins.lua | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/.config/nvim/lua/init/06-plugins.lua b/.config/nvim/lua/init/06-plugins.lua index 3ea88cc..f378f27 100644 --- a/.config/nvim/lua/init/06-plugins.lua +++ b/.config/nvim/lua/init/06-plugins.lua @@ -13,7 +13,24 @@ vim.g.loaded_zipPlugin = 1 local lazy_path = require('vimrc.my_env').data_dir .. '/lazy/lazy.nvim' if vim.loop.fs_stat(lazy_path) then vim.opt.rtp:prepend(lazy_path) - require('lazy').setup('vimrc.plugins') + require('lazy').setup('vimrc.plugins', { + ui = { + icons = { + cmd = "⌘", + config = "", + event = "", + ft = "", + init = "", + keys = "", + plugin = "", + runtime = "", + source = "", + start = "", + task = "", + lazy = " ", + }, + }, + }) else vim.api.nvim_create_user_command( 'LazySetup', |
