local set = vim.keymap.set -- Basic movement keybinds, these make navigating splits easy for me set("n", "", "") set("n", "", "") set("n", "", "") set("n", "", "") -- Bindings for reloading LUA files (used when working with lua files) set("n", "x", ".lua", { desc = "Execute the current lne" }) set("n", "x", "source %", { desc = "Execute the current file" })