From 7ab0fc27c8ee92de049857e4a76590bb1ff44d4e Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Thu, 23 Oct 2025 16:21:10 +0200 Subject: [PATCH] [Scratch] Add --- nvim/lua/plugins/util/scratch.lua | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 nvim/lua/plugins/util/scratch.lua diff --git a/nvim/lua/plugins/util/scratch.lua b/nvim/lua/plugins/util/scratch.lua new file mode 100644 index 0000000..e42df7d --- /dev/null +++ b/nvim/lua/plugins/util/scratch.lua @@ -0,0 +1,9 @@ +return { + "LintaoAmons/scratch.nvim", + event = "VeryLazy", + config = function() + local opts = require("utils").opts + + vim.keymap.set("n", "+", ":Scratch", opts("Open a scratchpad")) + end, +}