From 6fa627cb1ad093e679a8d1bed9c0e32d9843f0a9 Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Sun, 24 Dec 2023 01:16:27 +0100 Subject: [PATCH] Added fix to allow repeating surround actions --- init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/init.lua b/init.lua index a76670d..027a4a9 100644 --- a/init.lua +++ b/init.lua @@ -119,6 +119,7 @@ local function packer_startup(use) use 'michaeljsmith/vim-indent-object' -- Treats lines of the same indentation as a new text object, access with i and I. use 'tpope/vim-surround' -- Allows you to surround text with tags, quotes and brackets. + use 'tpope/vim-repeat' -- Needed for above plugin to repeat actions. if packer_bootstrap then --Comes after packages require('packer').sync()