2021-08-16 18:48:08 +02:00
|
|
|
local present, chadsheet = pcall(require, "cheatsheet")
|
|
|
|
|
|
|
|
if not present then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2021-08-19 09:06:01 +02:00
|
|
|
local mappings = require("chadrc").mappings
|
2021-08-16 18:48:08 +02:00
|
|
|
|
|
|
|
-- add user mappings to the cheetsheet
|
|
|
|
for section, data in pairs(mappings) do
|
|
|
|
for description, keymap in pairs(data) do
|
|
|
|
chadsheet.add_cheat(description, keymap, section)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
require("cheatsheet").setup {
|
|
|
|
|
|
|
|
bundled_cheatsheets = {
|
|
|
|
enabled = { "default" },
|
|
|
|
disabled = { "unicode", "nerd-fonts" },
|
|
|
|
},
|
|
|
|
|
|
|
|
bundled_plugin_cheatsheets = false,
|
|
|
|
include_only_installed_plugins = true,
|
|
|
|
}
|