From 03e1f5631ef4e7704a5e0bb70b7c6a751b7a7b1d Mon Sep 17 00:00:00 2001 From: Rokas Puzonas Date: Sat, 30 Oct 2021 17:47:43 +0300 Subject: [PATCH] feat: add vim-repeat, vim-surround --- lua/plugins.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lua/plugins.lua b/lua/plugins.lua index b96ceea..a7c3565 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -16,6 +16,12 @@ local function usePlugins(use) config = [[require 'config.reload']] } + -- Provides mappings for working with symbols like (), {}, [], etc. + use 'tpope/vim-surround' + + -- Allow repeating + use 'tpope/vim-repeat' + -- Tree-sitter use { 'nvim-treesitter/nvim-treesitter',