From 59dfdb86d493b3e19f7c9eb28a5c34befb25adf2 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sat, 6 Dec 2025 10:45:15 +0100 Subject: [PATCH] nvim/lua/user/plugins/editor.lua: add nvim-surround --- nvim/lua/user/plugins/editor.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nvim/lua/user/plugins/editor.lua b/nvim/lua/user/plugins/editor.lua index b62ac03..fbdbe22 100644 --- a/nvim/lua/user/plugins/editor.lua +++ b/nvim/lua/user/plugins/editor.lua @@ -18,6 +18,9 @@ return { -- Better text objects. { 'echasnovski/mini.ai', version = '*', opts = {}}, + -- Surround actions + { "kylechui/nvim-surround", version = "^3.0.0", event = "VeryLazy", opts = {} }, + -- I use this for crc,crs,crm (etc) binds to change between cases. { 'tpope/vim-abolish' },