From 82a1c1e251210f4805dec8f6d59a6ab2c6791334 Mon Sep 17 00:00:00 2001 From: pml68 Date: Fri, 29 Nov 2024 23:28:27 +0100 Subject: feat: split plugins.lua into manageable "chunks" --- lua/pml68/plugins/other.lua | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 lua/pml68/plugins/other.lua (limited to 'lua/pml68/plugins/other.lua') diff --git a/lua/pml68/plugins/other.lua b/lua/pml68/plugins/other.lua new file mode 100644 index 0000000..cf7a888 --- /dev/null +++ b/lua/pml68/plugins/other.lua @@ -0,0 +1,23 @@ +return { + { + "NStefan002/visual-surround.nvim", + event = { "BufReadPost", "BufNewFile" }, + config = true, + }, + { + "christoomey/vim-tmux-navigator", + lazy = false, + }, + { + "lukas-reineke/indent-blankline.nvim", + main = "ibl", + event = { "BufReadPost", "BufNewFile" }, + config = function() + require("ibl").setup() + end + }, + { + "stevearc/dressing.nvim", + event = "VeryLazy", + }, +} -- cgit v1.2.3