mirror of
https://github.com/marianozunino/nvim.git
synced 2025-06-28 10:33:49 -03:00
11 lines
298 B
Lua
11 lines
298 B
Lua
local M = { "ethanholz/nvim-lastplace" }
|
|
|
|
M.config = function()
|
|
require("nvim-lastplace").setup({
|
|
lastplace_ignore_buftype = { "quickfix", "nofile", "help" },
|
|
lastplace_ignore_filetype = { "gitcommit", "gitrebase", "svn", "hgcommit" },
|
|
lastplace_open_folds = true,
|
|
})
|
|
end
|
|
|
|
return M
|