mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-15 08:52:31 -05:00
23 lines
344 B
Lua
23 lines
344 B
Lua
|
require("smartyank").setup {
|
||
|
validate_yank = false,
|
||
|
|
||
|
highlight = {
|
||
|
enabled = false,
|
||
|
},
|
||
|
|
||
|
clipboard = {
|
||
|
enabled = true,
|
||
|
},
|
||
|
|
||
|
tmux = {
|
||
|
enabled = true,
|
||
|
cmd = { "tmux", "set-buffer", "-w" },
|
||
|
},
|
||
|
|
||
|
osc52 = {
|
||
|
enabled = true,
|
||
|
ssh_only = true,
|
||
|
silent = true,
|
||
|
},
|
||
|
}
|