diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-06 20:14:41 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-06 20:14:41 +0900 |
| commit | 33ed3e47b00babbbda6983653398e16f5f6c6e09 (patch) | |
| tree | 558c1c94ec548fdfad12eedfe319d147676bf1d0 /.config/nvim/lua/init/06-plugins.lua | |
| parent | 0f46580ea6e2d456c0883c30a9cbc302f290ce7c (diff) | |
| download | dotfiles-33ed3e47b00babbbda6983653398e16f5f6c6e09.tar.gz dotfiles-33ed3e47b00babbbda6983653398e16f5f6c6e09.tar.zst dotfiles-33ed3e47b00babbbda6983653398e16f5f6c6e09.zip | |
nvim/lazy: set ui.icons to avoid using Nerd Font
Diffstat (limited to '.config/nvim/lua/init/06-plugins.lua')
| -rw-r--r-- | .config/nvim/lua/init/06-plugins.lua | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/.config/nvim/lua/init/06-plugins.lua b/.config/nvim/lua/init/06-plugins.lua index 855edf9..87fc63e 100644 --- a/.config/nvim/lua/init/06-plugins.lua +++ b/.config/nvim/lua/init/06-plugins.lua @@ -14,20 +14,22 @@ 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', { + -- Overrides ui.icons to avoid using Nerd Font. ui = { icons = { cmd = "⌘", - config = "", - event = "", - ft = "", - init = "", - keys = "", - plugin = "", - runtime = "", - source = "", - start = "", - task = "", - lazy = " ", + config = "🛠", + event = "📅", + ft = "📂", + init = "⚙", + keys = "🗝", + plugin = "🔌", + runtime = "💻", + require = "🌙", + source = "📄", + start = "🚀", + task = "📌", + lazy = "💤 ", }, }, change_detection = { |
