From e22288fbf8ef43fe0b6f468438ed93cb069f98c5 Mon Sep 17 00:00:00 2001 From: 409 Date: Wed, 10 Apr 2024 13:09:09 +0200 Subject: [PATCH] added mini.surround --- lazy-lock.json | 1 + lua/409/plugins/util.lua | 49 +++++++++++++++++++++++----------------- 2 files changed, 29 insertions(+), 21 deletions(-) diff --git a/lazy-lock.json b/lazy-lock.json index 7fbdea0..829da3b 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -18,6 +18,7 @@ "lualine.nvim": { "branch": "master", "commit": "0a5a66803c7407767b799067986b4dc3036e1983" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "44509689b9bf3984d729cc264aacb31cb7f41668" }, "mason.nvim": { "branch": "main", "commit": "751b1fcbf3d3b783fcf8d48865264a9bcd8f9b10" }, + "mini.surround": { "branch": "main", "commit": "a1b590cc3b676512de507328d6bbab5e43794720" }, "neogen": { "branch": "main", "commit": "0daffcec249bf42275e322361fe55b89a05ff278" }, "nvim-cmp": { "branch": "main", "commit": "ce16de5665c766f39c271705b17fff06f7bcb84f" }, "nvim-lspconfig": { "branch": "master", "commit": "9619e53d3f99f0ca4ea3b88f5d97fce703131820" }, diff --git a/lua/409/plugins/util.lua b/lua/409/plugins/util.lua index 0f2fecd..474e199 100644 --- a/lua/409/plugins/util.lua +++ b/lua/409/plugins/util.lua @@ -1,24 +1,31 @@ return { - { - "nvim-lua/plenary.nvim", - lazy = true, - }, - { - "christoomey/vim-tmux-navigator", - lazy = false, - }, - { - "mbbill/undotree", - keys = { - { - "u", - ":UndotreeToggle", - } - } - }, - "nvim-tree/nvim-web-devicons", - { - "RRethy/vim-illuminate", - event = "VeryLazy" + { + "nvim-lua/plenary.nvim", + lazy = true, + }, + { + "christoomey/vim-tmux-navigator", + lazy = false, + }, + { + "mbbill/undotree", + keys = { + { + "u", + ":UndotreeToggle", + }, + }, + }, + "nvim-tree/nvim-web-devicons", + { + "RRethy/vim-illuminate", + event = "VeryLazy", + }, + { + "echasnovski/mini.surround", + version = "*", + config = function() + require("mini.surround").setup() + end }, }