|
|
|
@ -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!
|
|
|
|
|