diff --git a/lua/persistence/init.lua b/lua/persistence/init.lua index 599fc79..760f6b6 100644 --- a/lua/persistence/init.lua +++ b/lua/persistence/init.lua @@ -45,7 +45,7 @@ function M.start() if Config.options.need > 0 then local bufs = vim.tbl_filter(function(b) - if vim.bo[b].buftype ~= "" or vim.bo[b].filetype == "gitcommit" or vim.bo[b].filetype == "gitrebase" or vim.bo[b].filetype == "jj" then + if vim.bo[b].buftype ~= "" or vim.tbl_contains({ "gitcommit", "gitrebase", "jj" }, vim.bo[b].filetype) then return false end return vim.api.nvim_buf_get_name(b) ~= ""