feat: Add clipboard sync by default (#166)

pull/182/head
Tudor 1 year ago committed by GitHub
parent 3526fbeec9
commit 9f384d76f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -201,6 +201,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

Loading…
Cancel
Save