Files
nvim-modular/lua/kickstart/core/lazy-plugins.lua
2025-08-28 23:17:34 +02:00

55 lines
1.8 KiB
Lua

-- [[ Configure and install plugins ]]
--
-- To check the current status of your plugins, run
-- :Lazy
--
-- You can press `?` in this menu for help. Use `:q` to close the window
--
-- To update plugins you can run
-- :Lazy update
--
-- NOTE: Here is where you install your plugins.
require('lazy').setup({
spec = {
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
-- 'NMAC427/guess-indent.nvim', -- Detect tabstop and shiftwidth automatically
-- NOTE: Plugins can be added with a require command
-- require 'kickstart.plugins.mini',
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/kickstart/plugins/*.lua`
-- This is the easiest way to modularize your config.
{ import = 'kickstart.plugins' },
-- In order to disable a plugin, add a spec with enabled=false
--
-- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec`
-- Or use telescope!
-- In normal mode type `<space>sh` then write `lazy.nvim-plugin`
-- you can continue same window with `<space>sr` which resumes last telescope search
},
}, {
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 = '💤 ',
},
},
})
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et