From ad645c02ab94b565281b02c658b291be1d034b53 Mon Sep 17 00:00:00 2001 From: Dennis Chan Date: Tue, 6 May 2025 14:27:10 +0800 Subject: [PATCH] add mini.pairs --- init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.lua b/init.lua index 5556c160..a50f76ac 100644 --- a/init.lua +++ b/init.lua @@ -837,6 +837,9 @@ require('lazy').setup({ -- File and folder icon require('mini.icons').setup() + -- Auto pair + require('mini.pairs').setup() + -- Simple and easy statusline. -- You could remove this setup call if you don't like it, -- and try some other statusline plugin @@ -888,9 +891,6 @@ require('lazy').setup({ -- NOTE: Next step on your Neovim journey: Add/Configure additional plugins for Kickstart -- - - require 'custom.plugins', - -- Here are some example plugins that I've included in the Kickstart repository. -- Uncomment any of the lines below to enable them (you will need to restart nvim). -- @@ -905,7 +905,7 @@ require('lazy').setup({ -- This is the easiest way to modularize your config. -- -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going. - -- { import = 'custom.plugins' }, + { import = 'custom.plugins' }, -- -- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec` -- Or use telescope!