switch neotree for oil

This commit is contained in:
Andre Schaf 2025-06-10 14:32:54 +02:00
parent c49aaeb82a
commit afd642e367
5 changed files with 36 additions and 24 deletions

View file

@ -32,3 +32,16 @@ vim.opt.updatetime = 50
-- use system clipboard
vim.opt.clipboard = "unnamedplus"
vim.g.clipboard = {
name = "win32yank-wsl",
copy = {
["+"] = "win32yank.exe -i --crlf",
["*"] = "win32yank.exe -i --crlf"
},
paste = {
["+"] = "win32yank.exe -o --crlf",
["*"] = "win32yank.exe -o --crlf"
},
cache_enable = 0,
}