From ff72d5d483ad2ae4b8f2ff58c3b5ac76a542edd0 Mon Sep 17 00:00:00 2001 From: Tyler Hallada Date: Fri, 1 Dec 2023 15:26:01 -0500 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, })