add mini.pairs

This commit is contained in:
Dennis Chan 2025-05-06 14:27:10 +08:00
parent c6012d2d5d
commit ad645c02ab
1 changed files with 4 additions and 4 deletions

View File

@ -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!