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
|