blob: f40939762604b06bb3252eef2d4bf570f495c344 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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" },
}
|