you can disable clipboard (#783)

This commit is contained in:
Abouzar Parvan 2021-07-08 15:37:51 +04:30 committed by GitHub
parent 030053d3dc
commit 84d6ea7a63
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -8,6 +8,7 @@ O = {
auto_close_tree = 0,
auto_complete = true,
colorscheme = "lunar",
clipboard = "unnamedplus",
hidden_files = true,
wrap_lines = false,
number = true,

View file

@ -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" }