From f764e5958f94ef8a67bfc148bf6d98611af54481 Mon Sep 17 00:00:00 2001 From: Raffaele Wylde <75472685+raffaelewylde@users.noreply.github.com> Date: Sun, 7 Jul 2024 13:37:00 -0400 Subject: [PATCH] added plugin for cht.sh and small changes to options --- lua/config/options.lua | 5 +++++ lua/plugins/cheatshvim.lua | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 lua/plugins/cheatshvim.lua diff --git a/lua/config/options.lua b/lua/config/options.lua index 2175cdc..741363d 100644 --- a/lua/config/options.lua +++ b/lua/config/options.lua @@ -11,3 +11,8 @@ vim.opt.softtabstop = 4 vim.opt.shiftwidth = 4 vim.opt.expandtab = true vim.env.PATH = vim.env.HOME .. "/.local/share/mise/shims:" .. vim.env.PATH +vim.opt.undofile = true +vim.opt.autowriteall = true +vim.opt.swapfile = false +vim.opt.writebackup = true +vim.g.CheatSheetDisableFrameworkDetection = 0 diff --git a/lua/plugins/cheatshvim.lua b/lua/plugins/cheatshvim.lua new file mode 100644 index 0000000..0edb884 --- /dev/null +++ b/lua/plugins/cheatshvim.lua @@ -0,0 +1,3 @@ +return { + "dbeniamine/cheat.sh-vim", +}