From feebbd7f31e7e1ef2e7128ad1946899d2309ee30 Mon Sep 17 00:00:00 2001 From: Nick Burt Date: Mon, 9 Feb 2026 21:07:45 -0600 Subject: [PATCH] enable and configure terminal --- lua/custom/plugins/snacks.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/custom/plugins/snacks.lua b/lua/custom/plugins/snacks.lua index cff2154c..15c99212 100644 --- a/lua/custom/plugins/snacks.lua +++ b/lua/custom/plugins/snacks.lua @@ -9,7 +9,9 @@ return { dashboard = { enabled = true }, gitbrowse = { enabled = true }, lazygit = { enabled = true }, + --TODO: determine a method for deleting scratches easily scratch = { enabled = true }, + terminal = { enabled = true }, }, --TODO: set whichkey categories for keybinds keys = { @@ -18,5 +20,6 @@ return { { 'gl', function() Snacks.lazygit.open() end, desc = 'Open Lazy Git' }, { 'no', function() Snacks.scratch() end, desc = 'Open Notepad' }, { 'ns', function() Snacks.scratch.select() end, desc = 'Select Note' }, + { '', function() Snacks.terminal() end, desc = 'Open Terminal' }, }, }