nix-config/home/vim/after/plugin/mappings/misc.lua

8 lines
161 B
Lua
Raw Normal View History

2022-02-26 14:44:52 +01:00
local wk = require("which-key")
2021-02-23 16:08:46 +01:00
2022-02-26 14:44:52 +01:00
local keys = {
["<leader>"] = { "<cmd>nohls<CR>", "Clear search highlight" },
}
wk.register(keys, { prefix = "<leader>" })