add the last of the mini plugins, and move the comment around the mini-deps initialisation.

This commit is contained in:
2025-11-22 23:34:41 +01:00
parent 4d225eb292
commit 5bfab9b6b5

View File

@@ -72,10 +72,13 @@ require('mini.statusline').setup({
use_icons = true,
set_vim_settings = true,
})
require('mini.tabline').setup({
-- TODO: port keybindings from the older configuration
})
require('mini.trailspace').setup() -- trailing space indication and removal. -- WARN: conflicts with whitespace thing
-- Set up mini.deps, and add the plugins we'll need to use.
require('mini.deps').setup({ path = { package = path_package } })
-- import the plugins that we'll be using
local add = MiniDeps.add
add({ source = 'https://github.com/rmagatti/auto-session' })
add({ source = 'https://github.com/windwp/nvim-autopairs' })