-- 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 local map = vim.keymap.set local wk = require("which-key") -- cmake tools map("n", "tg", "CMakeGenerate", { desc = "Cmake Generate" }) map("n", "tb", "CMakeBuild", { desc = "Cmake Build" }) map("n", "tc", "CMakeClean", { desc = "Cmake Clean" }) map("n", "tr", "CMakeRun", { desc = "Cmake Run" }) wk.add({ { "t", group = "CMake", mode = { "n" } }, })