From c78361a6155dd53cd1098f7fdf33acfea20dc903 Mon Sep 17 00:00:00 2001 From: Marcelo Date: Mon, 3 Mar 2025 21:05:55 -0300 Subject: Initial commit. --- lua/config/plugins/lastplace.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 lua/config/plugins/lastplace.lua (limited to 'lua/config/plugins/lastplace.lua') diff --git a/lua/config/plugins/lastplace.lua b/lua/config/plugins/lastplace.lua new file mode 100644 index 0000000..f409397 --- /dev/null +++ b/lua/config/plugins/lastplace.lua @@ -0,0 +1,17 @@ +return { + -- Intelligently reopen files at your last edit position in Vim. + { + "ethanholz/nvim-lastplace", + config = function() + require("nvim-lastplace").setup({ + lastplace_ignore_buftype = { "quickfix", "nofile", "help" }, + lastplace_ignore_filetype = { "gitcommit", "gitrebase" }, + lastplace_open_folds = true + }) + end + }, + + -- vim-fetch enables Vim to process line and column jump specifications + -- in file paths as found in stack traces and similar output. + { "wsdjeg/vim-fetch" }, +} -- cgit v1.2.3