From 5bfab9b6b572a617c8e32411aa5a2125eaf1e327 Mon Sep 17 00:00:00 2001 From: Quinn Date: Sat, 22 Nov 2025 23:34:41 +0100 Subject: [PATCH] add the last of the mini plugins, and move the comment around the mini-deps initialisation. --- plug.lua | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/plug.lua b/plug.lua index 7b6da74..1f752cb 100644 --- a/plug.lua +++ b/plug.lua @@ -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' })