From 38be6324c2e40528d20f88843a3d6f3e7853b3f6 Mon Sep 17 00:00:00 2001 From: ralvescosta Date: Mon, 17 Mar 2025 05:53:50 -0300 Subject: [PATCH] feat: lazy config --- init.lua | 24 +++++------------------- 1 file changed, 5 insertions(+), 19 deletions(-) diff --git a/init.lua b/init.lua index 4cf282d3..b6775ef4 100644 --- a/init.lua +++ b/init.lua @@ -17,25 +17,11 @@ require('lazy').setup({ { import = 'kickstart.plugins' }, { import = 'custom.plugins' }, }, { + checker = { + enabled = true, + notify = false, + }, ui = { - icons = vim.g.have_nerd_font and {} or { - cmd = '⌘', - config = '🛠', - event = '📅', - ft = '📂', - init = '⚙', - keys = '🗝', - plugin = '🔌', - runtime = '💻', - require = '🌙', - source = '📄', - start = '🚀', - task = '📌', - lazy = '💤 ', - }, + icons = vim.g.have_nerd_font, }, }) - --- The line beneath this is called `modeline`. See `:help modeline` --- vim: ts=2 sts=2 sw=2 et ---