Compare commits

..

6 Commits

Author SHA1 Message Date
orip
2fccee4349 Split the vim.pack.add call and move each part to the relevant sections 2026-05-05 01:25:21 +03:00
orip
2e8d5b17cb Split into sections 2026-05-05 01:24:17 +03:00
orip
a42ed30a09 Update the explanations and docs 2026-05-05 01:22:42 +03:00
orip
716d7465c0 Enable vim.loader for faster loading time 2026-05-05 01:18:15 +03:00
orip
c4605421e5 Migrate to vim.pack 2026-05-05 01:18:15 +03:00
orip
cd7adee3ce Refactor and update some of the comments 2026-05-05 01:17:59 +03:00

View File

@ -248,8 +248,9 @@ do
-- `vim.pack` is a new plugin manager built into Neovim, -- `vim.pack` is a new plugin manager built into Neovim,
-- which provides a Lua interface for installing and managing plugins. -- which provides a Lua interface for installing and managing plugins.
-- --
-- See `:help vim.pack`, `:help vim.pack-examples` or -- See `:help vim.pack`, `:help vim.pack-examples` or the
-- the excellent blog post from the creator of mini.nvim https://echasnovski.com/blog/2026-03-13-a-guide-to-vim-pack -- excellent blog post from the creator of vim.pack and mini.nvim:
-- https://echasnovski.com/blog/2026-03-13-a-guide-to-vim-pack
-- --
-- To inspect plugin state and pending updates, run -- To inspect plugin state and pending updates, run
-- :lua vim.pack.update(nil, { offline = true }) -- :lua vim.pack.update(nil, { offline = true })
@ -391,7 +392,8 @@ do
vim.pack.add { gh 'folke/todo-comments.nvim' } vim.pack.add { gh 'folke/todo-comments.nvim' }
require('todo-comments').setup { signs = false } require('todo-comments').setup { signs = false }
-- Collection of various small independent plugins/modules -- [[ mini.nvim ]]
-- A collection of various small independent plugins/modules
vim.pack.add { gh 'nvim-mini/mini.nvim' } vim.pack.add { gh 'nvim-mini/mini.nvim' }
-- Better Around/Inside textobjects -- Better Around/Inside textobjects
@ -835,7 +837,7 @@ do
-- <c-e>: Hide menu -- <c-e>: Hide menu
-- <c-k>: Toggle signature help -- <c-k>: Toggle signature help
-- --
-- See :h blink-cmp-config-keymap for defining your own keymap -- See `:help blink-cmp-config-keymap` for defining your own keymap
preset = 'default', preset = 'default',
-- For more advanced Luasnip keymaps (e.g. selecting choice nodes, expansion) see: -- For more advanced Luasnip keymaps (e.g. selecting choice nodes, expansion) see: