options: clipboards arent synced anymore

This commit is contained in:
Matej Janezic 2023-02-25 15:40:29 +01:00
parent 0a95bed483
commit 73a7d63970
Signed by: janezicmatej
GPG Key ID: 4298E230ED37B2C0
1 changed files with 0 additions and 8 deletions

View File

@ -13,11 +13,6 @@ vim.wo.relativenumber = 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
@ -41,7 +36,4 @@ vim.o.completeopt = 'menuone,noselect'
vim.o.termguicolors = true
-- set custom end of line character
-- vim.cmd [[set list listchars=eol:\n]]
return {}