local map = vim.keymap.set -- move between windows map("n", "", "h") map("n", "", "j") map("n", "", "k") map("n", "", "l") -- clear highligths and command map("n", "", "nohlsearchecho") -- file explorer map("n", "-", "Ex") -- copy and paste using the system clipboard map({"n", "v"}, "y", '"+y') map({"n", "v"}, "p", '"+p')