From be85b704183e15ac899bcfe036b3714a426ab819 Mon Sep 17 00:00:00 2001 From: Tyler Hallada Date: Wed, 22 Mar 2023 23:54:25 -0400 Subject: [PATCH] Add nowrite to lastplace-nvim buftype ignore --- lua/plugins/lastplace-nvim.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/plugins/lastplace-nvim.lua b/lua/plugins/lastplace-nvim.lua index a30109a..1680901 100644 --- a/lua/plugins/lastplace-nvim.lua +++ b/lua/plugins/lastplace-nvim.lua @@ -1,5 +1,5 @@ require('nvim-lastplace').setup({ - lastplace_ignore_buftype = { 'quickfix', 'nofile', 'help' }, + lastplace_ignore_buftype = { 'quickfix', 'nofile', 'nowrite', 'help' }, lastplace_ignore_filetype = { 'gitcommit', 'gitrebase', 'svn', 'hgcommit' }, lastplace_open_folds = true, })