This commit is contained in:
Thomas Ruoff
2025-05-19 08:53:49 +02:00
parent 07bf86ba5a
commit c4039d2287
2 changed files with 4 additions and 4 deletions

View File

@@ -3,9 +3,7 @@ vim.opt.relativenumber = true
vim.opt.mouse = 'a'
vim.opt.showmode = false
vim.schedule(function()
vim.opt.clipboard = 'unnamedplus'
end)
vim.schedule(function() vim.opt.clipboard = 'unnamedplus' end)
vim.opt.breakindent = true
vim.opt.undofile = true
@@ -33,4 +31,7 @@ vim.opt.cursorline = true
-- Minimal number of screen lines to keep above and below the cursor.
vim.opt.scrolloff = 10
-- global statusline
vim.o.laststatus = 3
vim.opt.confirm = true