feat(cheatsheet.lua): add cheatsheet plugin and its dependencies to the configuration

Add the cheatsheet plugin and its dependencies to the configuration file. This allows for the integration of the cheatsheet functionality into the application.
This commit is contained in:
David Ibia
2024-01-14 03:13:00 +01:00
parent 3277805e69
commit 75a58a2d0b
2 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
local cheatsheet = require("cheatsheet")
cheatsheet.setup({})

View File

@@ -0,0 +1,11 @@
return {
"sudormrfbin/cheatsheet.nvim",
dependencies = {
{ "nvim-telescope/telescope.nvim" },
{ "nvim-lua/plenary.nvim" },
},
config = function()
require("absolute.after.cheatsheet")
end,
}