mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-05 02:24:58 +02:00
you can disable clipboard (#783)
This commit is contained in:
parent
030053d3dc
commit
84d6ea7a63
2 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@ O = {
|
|||
auto_close_tree = 0,
|
||||
auto_complete = true,
|
||||
colorscheme = "lunar",
|
||||
clipboard = "unnamedplus",
|
||||
hidden_files = true,
|
||||
wrap_lines = false,
|
||||
number = true,
|
||||
|
|
|
@ -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" }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue