Various fixes from upstream

This commit is contained in:
Imbus 2024-08-06 10:42:21 +02:00
parent 0b48197426
commit 5b27a06a37
4 changed files with 8 additions and 4 deletions

View file

@ -16,9 +16,12 @@ vim.opt.mouse = 'a'
vim.opt.showmode = false
-- Sync clipboard between OS and Neovim.
-- Schedule the setting after `UiEnter` because it can increase startup-time.
-- Remove this option if you want your OS clipboard to remain independent.
-- See `:help 'clipboard'`
vim.opt.clipboard = 'unnamedplus'
vim.schedule(function()
vim.opt.clipboard = 'unnamedplus'
end)
-- Enable break indent
vim.opt.breakindent = true