From 5fc28dadf52eb6f5d70efe7f2c9946fdc0113b1b Mon Sep 17 00:00:00 2001 From: zolinthecow Date: Tue, 12 Nov 2024 22:55:36 +0000 Subject: [PATCH] move ui stuff --- lua/colinzhao/lazy/init.lua | 20 -------------------- lua/colinzhao/lazy_init.lua | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/lua/colinzhao/lazy/init.lua b/lua/colinzhao/lazy/init.lua index 56e70c90..92e777a9 100644 --- a/lua/colinzhao/lazy/init.lua +++ b/lua/colinzhao/lazy/init.lua @@ -81,24 +81,4 @@ return { { 'prisma/vim-prisma', }, -}, { - ui = { - -- If you are using a Nerd Font: set icons to an empty table which will use the - -- default lazy.nvim defined Nerd Font icons, otherwise define a unicode icons table - icons = vim.g.have_nerd_font and {} or { - cmd = '⌘', - config = '🛠', - event = '📅', - ft = '📂', - init = '⚙', - keys = '🗝', - plugin = '🔌', - runtime = '💻', - require = '🌙', - source = '📄', - start = '🚀', - task = '📌', - lazy = '💤 ', - }, - }, } diff --git a/lua/colinzhao/lazy_init.lua b/lua/colinzhao/lazy_init.lua index 512e694b..fcb027bd 100644 --- a/lua/colinzhao/lazy_init.lua +++ b/lua/colinzhao/lazy_init.lua @@ -1,6 +1,7 @@ -- [[ Install `lazy.nvim` plugin manager ]] -- See `:help lazy.nvim.txt` or https://github.com/folke/lazy.nvim for more info local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim' +print(lazypath) if not vim.loop.fs_stat(lazypath) then local lazyrepo = 'https://github.com/folke/lazy.nvim.git' vim.fn.system { 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath } @@ -12,4 +13,23 @@ require('lazy').setup { change_detection = { notify = false, }, + ui = { + -- If you are using a Nerd Font: set icons to an empty table which will use the + -- default lazy.nvim defined Nerd Font icons, otherwise define a unicode icons table + icons = vim.g.have_nerd_font and {} or { + cmd = '⌘', + config = '🛠', + event = '📅', + ft = '📂', + init = '⚙', + keys = '🗝', + plugin = '🔌', + runtime = '💻', + require = '🌙', + source = '📄', + start = '🚀', + task = '📌', + lazy = '💤 ', + }, + }, }