sets: switched the direction of splits

This commit is contained in:
kalmenn 2023-12-21 12:44:47 +01:00
parent 478d5803bc
commit a325f788e8
Signed by: kalmenn
GPG key ID: F500055C44BC3834

View file

@ -25,7 +25,11 @@ vim.opt.undofile = true
vim.opt.updatetime = 50
-- close unused buffers
vim.opt.hidden = false
vim.opt.hidden = false -- TODO: not working
-- my brain is backwards
vim.opt.splitright = true
vim.opt.splitbelow = true
-- end search when exiting
vim.opt.hlsearch = false