2023-01-07 17:53:23 +08:00
|
|
|
-- bootstrap lazy.nvim, LazyVim and your plugins
|
2023-01-07 17:20:36 +08:00
|
|
|
require("config.lazy")
|
2024-04-09 01:42:08 +08:00
|
|
|
|
|
|
|
-- to copy from WSL2 ubuntu to Windows
|
|
|
|
vim.opt.clipboard = "unnamedplus"
|
|
|
|
vim.g.clipboard = {
|
|
|
|
name = "win32yank-wsl",
|
|
|
|
copy = {
|
|
|
|
["+"] = "/mnt/d/64/win32yank.exe -i --crlf",
|
|
|
|
["*"] = "/mnt/d/64/win32yank.exe -i --crlf",
|
|
|
|
},
|
|
|
|
paste = {
|
|
|
|
["+"] = "/mnt/d/64/win32yank.exe -o --lf",
|
|
|
|
["*"] = "/mnt/d/64/win32yank.exe -o --lf",
|
|
|
|
},
|
|
|
|
cache_enabled = 0,
|
|
|
|
}
|