Files
nvim/lua/plugins/cheatsheet.lua
2025-11-04 11:44:29 +01:00

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,
}