enable and configure terminal

This commit is contained in:
Nick Burt 2026-02-09 21:07:45 -06:00
parent 1387bb1bc7
commit feebbd7f31
1 changed files with 3 additions and 0 deletions

View File

@ -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 {
{ '<leader>gl', function() Snacks.lazygit.open() end, desc = 'Open Lazy Git' },
{ '<leader>no', function() Snacks.scratch() end, desc = 'Open Notepad' },
{ '<leader>ns', function() Snacks.scratch.select() end, desc = 'Select Note' },
{ '<leader><C-t>', function() Snacks.terminal() end, desc = 'Open Terminal' },
},
}