From 75a58a2d0bd687db89f185b7e94ea473528cbaa1 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Sun, 14 Jan 2024 03:13:00 +0100 Subject: [PATCH] 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. --- lua/absolute/after/cheatsheet.lua | 3 +++ lua/absolute/plugins/cheatsheet.lua | 11 +++++++++++ 2 files changed, 14 insertions(+) create mode 100644 lua/absolute/after/cheatsheet.lua create mode 100644 lua/absolute/plugins/cheatsheet.lua diff --git a/lua/absolute/after/cheatsheet.lua b/lua/absolute/after/cheatsheet.lua new file mode 100644 index 0000000..ff35659 --- /dev/null +++ b/lua/absolute/after/cheatsheet.lua @@ -0,0 +1,3 @@ +local cheatsheet = require("cheatsheet") + +cheatsheet.setup({}) diff --git a/lua/absolute/plugins/cheatsheet.lua b/lua/absolute/plugins/cheatsheet.lua new file mode 100644 index 0000000..7e65c03 --- /dev/null +++ b/lua/absolute/plugins/cheatsheet.lua @@ -0,0 +1,11 @@ +return { + "sudormrfbin/cheatsheet.nvim", + dependencies = { + { "nvim-telescope/telescope.nvim" }, + { "nvim-lua/plenary.nvim" }, + }, + config = function() + require("absolute.after.cheatsheet") + + end, +}