feat: Add clipboard sync by default

This commit is contained in:
Tudor 2023-02-06 08:29:59 +00:00 committed by TJ DeVries
parent 32744c3f66
commit 0a11506648

View File

@ -104,6 +104,11 @@ vim.wo.number = true
-- Enable mouse mode
vim.o.mouse = 'a'
-- Sync clipboard between OS and Neovim.
-- Remove this option if you want your OS clipboard to remain independent.
-- See `:help 'clipboard'`
vim.o.clipboard = 'unnamedplus'
-- Enable break indent
vim.o.breakindent = true