From 2e48e23a72106b474220a51ba3b8410494cd6e62 Mon Sep 17 00:00:00 2001 From: chilborne Date: Wed, 20 Dec 2023 13:29:15 +0100 Subject: [PATCH] surround/no trouble for now --- lua/custom/plugins/surround.lua | 10 ++++++++++ lua/custom/plugins/trouble.lua | 14 +++++++------- 2 files changed, 17 insertions(+), 7 deletions(-) create mode 100644 lua/custom/plugins/surround.lua diff --git a/lua/custom/plugins/surround.lua b/lua/custom/plugins/surround.lua new file mode 100644 index 00000000..c08e62cf --- /dev/null +++ b/lua/custom/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 +} diff --git a/lua/custom/plugins/trouble.lua b/lua/custom/plugins/trouble.lua index 7e92648b..90cdd1bc 100644 --- a/lua/custom/plugins/trouble.lua +++ b/lua/custom/plugins/trouble.lua @@ -1,9 +1,9 @@ return { - "folke/trouble.nvim", - dependencies = { "nvim-tree/nvim-web-devicons" }, - opts = { - -- your configuration comes here - -- or leave it empty to use the default settings - -- refer to the configuration section below - }, + -- "folke/trouble.nvim", + -- dependencies = { "nvim-tree/nvim-web-devicons" }, + -- opts = { + -- -- your configuration comes here + -- -- or leave it empty to use the default settings + -- -- refer to the configuration section below + -- }, }