wl-clipboard
This commit is contained in:
parent
8d6949fd50
commit
17e84d9d6a
14
init.lua
14
init.lua
|
@ -92,7 +92,19 @@ vim.g.maplocalleader = ' '
|
|||
|
||||
-- Set to true if you have a Nerd Font installed and selected in the terminal
|
||||
vim.g.have_nerd_font = false
|
||||
|
||||
-- Make wl-clipboard into the clipboard provider
|
||||
vim.g.clipboard = {
|
||||
name = 'wl-clipboard',
|
||||
copy = {
|
||||
['+'] = 'wl-copy',
|
||||
['*'] = 'wl-copy',
|
||||
},
|
||||
paste = {
|
||||
['+'] = 'wl-paste',
|
||||
['*'] = 'wl-paste',
|
||||
},
|
||||
cache_enabled = 0,
|
||||
}
|
||||
-- [[ Setting options ]]
|
||||
-- See `:help vim.opt`
|
||||
-- NOTE: You can change these options as you wish!
|
||||
|
|
Loading…
Reference in New Issue