[NEOVIM] Add clipboard support
This commit is contained in:
parent
e78039bc59
commit
7f9f7d5de5
1 changed files with 2 additions and 1 deletions
|
@ -22,8 +22,9 @@ local function init()
|
||||||
opt.wildmode = {'list', 'longest'} -- Command-line completion mode
|
opt.wildmode = {'list', 'longest'} -- Command-line completion mode
|
||||||
opt.wrap = false -- Disable line wrap
|
opt.wrap = false -- Disable line wrap
|
||||||
opt.mouse = 'a' -- Enable mouse for all previous modes
|
opt.mouse = 'a' -- Enable mouse for all previous modes
|
||||||
|
o.clipboard = 'unnamedplus' -- Enabled clipboard shared yank
|
||||||
end
|
end
|
||||||
|
|
||||||
return {
|
return {
|
||||||
init = init
|
init = init
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue