16 lines
332 B
Lua
16 lines
332 B
Lua
return {
|
|
"sudormrfbin/cheatsheet.nvim",
|
|
cmd = { "Cheatsheet" },
|
|
dependencies = {
|
|
"nvim-telescope/telescope.nvim",
|
|
"nvim-lua/popup.nvim",
|
|
"nvim-lua/plenary.nvim",
|
|
},
|
|
config = function()
|
|
require("cheatsheet").setup({
|
|
bundled_cheatsheets = true,
|
|
bundled_plugin_cheatsheets = true,
|
|
})
|
|
end,
|
|
}
|