lastplace.lua 298 B

1234567891011
  1. local M = { "ethanholz/nvim-lastplace" }
  2. M.config = function()
  3. require("nvim-lastplace").setup({
  4. lastplace_ignore_buftype = { "quickfix", "nofile", "help" },
  5. lastplace_ignore_filetype = { "gitcommit", "gitrebase", "svn", "hgcommit" },
  6. lastplace_open_folds = true,
  7. })
  8. end
  9. return M