summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim/config/lua/options.lua
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-08-11 20:22:37 -0400
committertriethyl <triethylammonium@pm.me>2025-08-11 20:22:37 -0400
commit04d818b753f86aec987e7e1c00ab0127de2c08f2 (patch)
tree63292ff38c4804e8e927ba0d32847c0b0058e6a3 /pkgs/custom-neovim/config/lua/options.lua
parent0237ca8b4e043bba284f3e5267c1958104b13ee6 (diff)
neovim: replace dropbar with incline & more
Diffstat (limited to 'pkgs/custom-neovim/config/lua/options.lua')
-rw-r--r--pkgs/custom-neovim/config/lua/options.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/custom-neovim/config/lua/options.lua b/pkgs/custom-neovim/config/lua/options.lua
index 3899c17..844341e 100644
--- a/pkgs/custom-neovim/config/lua/options.lua
+++ b/pkgs/custom-neovim/config/lua/options.lua
@@ -13,7 +13,7 @@ vim.o.scrolloff = 4 -- minimal number of screen lines to keep above and below th
vim.o.signcolumn = "yes" -- always show the sign column, otherwise it would shift the text each time
vim.o.clipboard = "unnamedplus" -- use system clipboard
-- vim.o.equalalways = true -- equalize splits
-vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,globals"
+vim.o.sessionoptions = "blank,curdir,folds,help,tabpages,winsize,winpos,terminal,globals,buffers" -- define what is saved with the session.
-- Split Behavior
vim.o.splitright = true