feat(options): enable smoothscroll on nightly

This commit is contained in:
Folke Lemaitre 2023-10-03 08:01:48 +02:00
parent 4e277fcb8f
commit 450e0c6beb
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -47,5 +47,9 @@ opt.wildmode = "longest:full,full" -- Command-line completion mode
opt.winminwidth = 5 -- Minimum window width opt.winminwidth = 5 -- Minimum window width
opt.wrap = false -- Disable line wrap opt.wrap = false -- Disable line wrap
if vim.fn.has("nvim-0.10") == 1 then
opt.smoothscroll = true
end
-- Fix markdown indentation settings -- Fix markdown indentation settings
vim.g.markdown_recommended_style = 0 vim.g.markdown_recommended_style = 0