blob: dd5130abb429ec4975d0d4d58a7d4801bbd2e012 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
local options = {
cheatsheet = {
theme = "grid", -- Options: "simple" or "grid"
excluded_groups = { "terminal (t)", "autopairs", "Nvim", "Opens" }, -- Exclude specific groups
},
}
-- Define a keymap for opening the cheatsheet
vim.keymap.set("n", "<leader>skc", function()
require("thesiahxyz.utils.cheatsheet.grid")()
end, { desc = "Open Cheatsheet" })
return options
|