From 73a7d6397056cc682f514c29a7b26151d5ed6bc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Sat, 25 Feb 2023 15:40:29 +0100 Subject: [PATCH] options: clipboards arent synced anymore --- lua/options.lua | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lua/options.lua b/lua/options.lua index 35c0ee6..a75b389 100644 --- a/lua/options.lua +++ b/lua/options.lua @@ -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 {}