commit 30d6c9c8993c8a595a0f3140915b305ff29c1dd7 from: Andre Mazzotti Bertachini date: Fri Jul 18 16:47:21 2025 UTC Cleaner netrw; Shorter scroll commit - cf56187e971b7683b78afed1a10d297f442e8029 commit + 30d6c9c8993c8a595a0f3140915b305ff29c1dd7 blob - 0d5eaf768146bfdb04a762187061a922a84d201c blob + de83b4c8d0f3ce803ba92b72eccffdeb16d32111 --- lua/config/options.lua +++ lua/config/options.lua @@ -12,9 +12,7 @@ vim.opt.softtabstop = 4 -- Number of spaces for vim.o.showmode = false -- Sync clipboard between OS and Neovim. -vim.schedule(function() - vim.o.clipboard = 'unnamedplus' -end) +vim.o.clipboard = 'unnamedplus' -- Enable break indent vim.o.breakindent = true @@ -57,7 +55,9 @@ vim.o.scrolloff = 10 -- See `:help 'confirm'` vim.o.confirm = true +vim.g.netrw_banner = 0 +vim.opt.scroll = 10 + -- This is done to sync terminal background with neovim background -- effectively hiding the padding MiniMisc.setup_termbg_sync() -