Skip to content

Commit

Permalink
fix(options): set sessionoptions the same as persistence
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Oct 8, 2023
1 parent 51e25a9 commit 502d324
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lazyvim/config/options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ opt.pumblend = 10 -- Popup blend
opt.pumheight = 10 -- Maximum number of entries in a popup
opt.relativenumber = true -- Relative line numbers
opt.scrolloff = 4 -- Lines of context
opt.sessionoptions = { "buffers", "curdir", "tabpages", "winsize" }
opt.sessionoptions = { "buffers", "curdir", "tabpages", "winsize", "help", "globals", "skiprtp" }
opt.shiftround = true -- Round indent
opt.shiftwidth = 2 -- Size of an indent
opt.shortmess:append({ W = true, I = true, c = true, C = true })
Expand Down

0 comments on commit 502d324

Please sign in to comment.