Compare commits

..

9 Commits

Author SHA1 Message Date
orip
c227278c56 Make the custom.plugins loading cross-platform 2026-05-04 21:13:12 +03:00
orip
f9b6223918 Move vim.pack.add to the relevant sections 2026-05-02 23:46:47 +03:00
orip
77ed7c9064 Split into sections 2026-04-24 02:33:42 +03:00
orip
d4bf13cefc Tidy the comments 2026-04-24 02:33:42 +03:00
orip
c0493754ff Doc fixes 2026-04-24 02:33:42 +03:00
orip
c63a0878f1 Update the explanations and docs 2026-04-24 02:33:42 +03:00
orip
9f74599d9f Enable vim.loader for faster loading time 2026-04-24 02:33:42 +03:00
orip
cd14662c99 Migrate to vim.pack 2026-04-24 02:33:42 +03:00
orip
6211a44f5c Move some comments around 2026-04-24 01:47:58 +03:00

View File

@ -248,9 +248,8 @@ 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 the -- See `:help vim.pack`, `:help vim.pack-examples` or
-- excellent blog post from the creator of vim.pack and mini.nvim: -- the excellent blog post from the creator of mini.nvim https://echasnovski.com/blog/2026-03-13-a-guide-to-vim-pack
-- 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 })
@ -392,8 +391,7 @@ 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 }
-- [[ mini.nvim ]] -- Collection of various small independent plugins/modules
-- 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
@ -837,7 +835,7 @@ do
-- <c-e>: Hide menu -- <c-e>: Hide menu
-- <c-k>: Toggle signature help -- <c-k>: Toggle signature help
-- --
-- See `:help blink-cmp-config-keymap` for defining your own keymap -- See :h 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: