-- Keymaps are automatically loaded on the VeryLazy event -- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua -- Add any additional keymaps here require "config.neovide" vim.keymap.set("t", "", "", { silent = true, desc = "Exit Terminal Mode" }) -- LazyVim hardcode tabs to jump snippet completions. Very fucking annoying. vim.keymap.del({ "i" }, "") vim.keymap.del({ "i" }, "") vim.keymap.set( "n", "z", "!zellij run --close-on-exit --in-place --name lazygit -- lazygit", { desc = "Open Lazygit" } )