From e83013ca7ec8cb217ec3ce6ebbe643b9151bcbbe Mon Sep 17 00:00:00 2001 From: Daniil Tsivinsky Date: Tue, 29 Mar 2022 17:49:54 +0300 Subject: [PATCH] set 'hidden' to false --- neovim/.config/nvim/lua/user/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neovim/.config/nvim/lua/user/options.lua b/neovim/.config/nvim/lua/user/options.lua index 53189cb..83f3d4b 100644 --- a/neovim/.config/nvim/lua/user/options.lua +++ b/neovim/.config/nvim/lua/user/options.lua @@ -19,7 +19,7 @@ opt.number = true opt.relativenumber = true opt.wrap = true opt.swapfile = false -opt.hidden = true +opt.hidden = false opt.writebackup = false opt.encoding = "utf-8" opt.updatetime = 300