mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 11:40:36 +00:00
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:
3
lua/absolute/after/cheatsheet.lua
Normal file
3
lua/absolute/after/cheatsheet.lua
Normal file
@@ -0,0 +1,3 @@
|
||||
local cheatsheet = require("cheatsheet")
|
||||
|
||||
cheatsheet.setup({})
|
||||
11
lua/absolute/plugins/cheatsheet.lua
Normal file
11
lua/absolute/plugins/cheatsheet.lua
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user