diff options
author | Abouzar Parvan <[email protected]> | 2021-07-08 15:37:51 +0430 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-08 07:07:51 -0400 |
commit | 84d6ea7a6302a916a38af262685db03902ce4866 (patch) | |
tree | a07231a26a0559349311e6b5fc2e95b7a959f856 /lua/settings.lua | |
parent | 030053d3dc27304e9f9aa1e80fc194c5836150c0 (diff) |
you can disable clipboard (#783)
Diffstat (limited to 'lua/settings.lua')
-rw-r--r-- | lua/settings.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/settings.lua b/lua/settings.lua index 3bf5d338..e1da3965 100644 --- a/lua/settings.lua +++ b/lua/settings.lua @@ -22,7 +22,7 @@ vim.g.colors_name = O.colorscheme --- SETTINGS --- opt.backup = false -- creates a backup file -opt.clipboard = "unnamedplus" -- allows neovim to access the system clipboard +opt.clipboard = O.clipboard -- allows neovim to access the system clipboard opt.cmdheight = O.cmdheight -- more space in the neovim command line for displaying messages opt.colorcolumn = "99999" -- fix indentline for now opt.completeopt = { "menuone", "noselect" } |