summaryrefslogtreecommitdiff
path: root/ar/.config/TheSiahxyz/lua/thesiahxyz/utils/cheatsheet.lua
diff options
context:
space:
mode:
Diffstat (limited to 'ar/.config/TheSiahxyz/lua/thesiahxyz/utils/cheatsheet.lua')
-rw-r--r--ar/.config/TheSiahxyz/lua/thesiahxyz/utils/cheatsheet.lua13
1 files changed, 0 insertions, 13 deletions
diff --git a/ar/.config/TheSiahxyz/lua/thesiahxyz/utils/cheatsheet.lua b/ar/.config/TheSiahxyz/lua/thesiahxyz/utils/cheatsheet.lua
deleted file mode 100644
index dd5130a..0000000
--- a/ar/.config/TheSiahxyz/lua/thesiahxyz/utils/cheatsheet.lua
+++ /dev/null
@@ -1,13 +0,0 @@
-local options = {
- cheatsheet = {
- theme = "grid", -- Options: "simple" or "grid"
- excluded_groups = { "terminal (t)", "autopairs", "Nvim", "Opens" }, -- Exclude specific groups
- },
-}
-
--- Define a keymap for opening the cheatsheet
-vim.keymap.set("n", "<leader>skc", function()
- require("thesiahxyz.utils.cheatsheet.grid")()
-end, { desc = "Open Cheatsheet" })
-
-return options