From 8a2b8592402326633062ad5377eb8fb8251251b0 Mon Sep 17 00:00:00 2001 From: Wil Simpson Date: Sun, 22 Dec 2024 10:15:01 -0600 Subject: [PATCH] feat: fixed surround not being imported correctly --- lua/custom/plugins/surround.lua | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/lua/custom/plugins/surround.lua b/lua/custom/plugins/surround.lua index 5d8529f8..0f96d447 100644 --- a/lua/custom/plugins/surround.lua +++ b/lua/custom/plugins/surround.lua @@ -1,17 +1,7 @@ return { - "kawre/leetcode.nvim", - build = ":TSUpdate html", - dependencies = { - "nvim-telescope/telescope.nvim", - "nvim-lua/plenary.nvim", -- required by telescope - "MunifTanjim/nui.nvim", - - -- optional - "nvim-treesitter/nvim-treesitter", - "rcarriga/nvim-notify", - "nvim-tree/nvim-web-devicons", - }, - opts = { - -- configuration goes here - }, + "kylechui/nvim-surround", + version = "*", + config = function() + require("nvim-surround").setup() + end }