Files
nvim/lua/plugins/cheatsheet.lua
Norm Rasmussen 6986e8fdda Plugin Changes
2022-03-08 16:14:59 -05:00

31 lines
1.0 KiB
Lua

require("cheatsheet").setup({
-- Whether to show bundled cheatsheets
-- For generic cheatsheets like default, unicode, nerd-fonts, etc
-- bundled_cheatsheets = {
-- enabled = {},
-- disabled = {},
-- },
bundled_cheatsheets = true,
-- For plugin specific cheatsheets
-- bundled_plugin_cheatsheets = {
-- enabled = {},
-- disabled = {},
-- }
bundled_plugin_cheatsheets = true,
-- For bundled plugin cheatsheets, do not show a sheet if you
-- don't have the plugin installed (searches runtimepath for
-- same directory name)
include_only_installed_plugins = true,
-- Key mappings bound inside the telescope window
telescope_mappings = {
['<CR>'] = require('cheatsheet.telescope.actions').select_or_fill_commandline,
['<A-CR>'] = require('cheatsheet.telescope.actions').select_or_execute,
['<C-Y>'] = require('cheatsheet.telescope.actions').copy_cheat_value,
['<C-E>'] = require('cheatsheet.telescope.actions').edit_user_cheatsheet,
}
})