From 0ccdf18a7c112c12be3c2acb046eeaf15c8b675e Mon Sep 17 00:00:00 2001 From: Andrzej Stepien Date: Thu, 14 Mar 2024 13:30:07 +0100 Subject: [PATCH] add quote, bracket etc auto-enclose --- lua/plugins/surround.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lua/plugins/surround.lua diff --git a/lua/plugins/surround.lua b/lua/plugins/surround.lua new file mode 100644 index 0000000..f3dbea8 --- /dev/null +++ b/lua/plugins/surround.lua @@ -0,0 +1,10 @@ +return { + "kylechui/nvim-surround", + version = "*", -- Use for stability; omit to use `main` branch for the latest features + event = "VeryLazy", + config = function() + require("nvim-surround").setup({ + -- Configuration here, or leave empty to use defaults + }) + end, +}