From 4ef478a14acc859a50a97e6b99401e021b65f3d8 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Mon, 10 Oct 2022 12:47:27 -0500 Subject: [PATCH] feat(nvim): set splitkeep to screen --- dots/.nvim-environments/primary/config/lua/core/options.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dots/.nvim-environments/primary/config/lua/core/options.lua b/dots/.nvim-environments/primary/config/lua/core/options.lua index ee9ceb43..2f76f44a 100755 --- a/dots/.nvim-environments/primary/config/lua/core/options.lua +++ b/dots/.nvim-environments/primary/config/lua/core/options.lua @@ -119,6 +119,9 @@ M.setup = function() -- Set command bar height opt.cmdheight = 1 + + -- Set splitkeep + vim.opt.splitkeep = "screen" end return M