summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugins/lastplace.lua
blob: 72e5c7f89e61faa03e99741f47dbec79d9481add (plain)
1
2
3
4
5
6
7
8
9
10
11
return {
    {
        "ethanholz/nvim-lastplace",

        opts = {
            lastplace_ignore_buftype = { "quickfix", "nofile", "help" },
            lastplace_ignore_filetype = { "gitcommit", "gitrebase", "svn", "hgcommit" },
            lastplace_open_folds = true,
        },
    }
}