From 9e7b0675cb05e4028587af12ea6dd636285c8072 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Thu, 10 Aug 2023 21:37:40 -0400 Subject: [PATCH] Added wrapping.nvim to plugins --- nvim/lua/plugins.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua index 7f3107d..585647e 100644 --- a/nvim/lua/plugins.lua +++ b/nvim/lua/plugins.lua @@ -107,6 +107,13 @@ use { use {"hrsh7th/vim-vsnip", config = get_config("vsnip")} +use({ + "andrewferrier/wrapping.nvim", + config = function() + require("wrapping").setup() + end, +}) + -- Theme use { 'EdenEast/nightfox.nvim',