···427427428428--copy path of current file into clipboard
429429vim.keymap.set('n', '<leader>y', ':let @+=expand("%:p")<CR>')
430430+--copy file name of current file into clipboard
431431+vim.keymap.set('n', '<leader>Y', ':let @+=expand("%:t")<CR>')
430432431433--! jumping forth and back: Needed, if I remove, c-o and c-i are not working anylonger
432434-- vim.keymap.set("n", "<leader>O", "<C-o>", { noremap = true })