summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim/config/lua/options.lua
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-08-08 11:03:36 -0400
committertriethyl <triethylammonium@pm.me>2025-08-08 11:03:36 -0400
commit33724076b23aefea4a3af26847cb3659bd523452 (patch)
tree04342460e9ae4d0a88eb6b4c20c5102d345746e5 /pkgs/custom-neovim/config/lua/options.lua
parent3b26572913f42c540691ee385bb255b52228e448 (diff)
neovim: change some plugins and fix sessions
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 5698594..296aea3 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,localoptions,globals"
+vim.o.sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal"
-- Split Behavior
vim.o.splitright = true