aboutsummaryrefslogtreecommitdiff
path: root/lua/pml68/plugins/other.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lua/pml68/plugins/other.lua23
1 files changed, 23 insertions, 0 deletions
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",
+ },
+}