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, +}