enable and configure scratch and git browse

This commit is contained in:
Nick Burt 2026-02-09 21:02:31 -06:00
parent b14cb685d7
commit 1387bb1bc7
1 changed files with 6 additions and 0 deletions

View File

@ -7,10 +7,16 @@ return {
--TODO: Use this for a bit and compare to mini dashboard --TODO: Use this for a bit and compare to mini dashboard
--TODO: design a style and featuers for my dashboard --TODO: design a style and featuers for my dashboard
dashboard = { enabled = true }, dashboard = { enabled = true },
gitbrowse = { enabled = true },
lazygit = { enabled = true }, lazygit = { enabled = true },
scratch = { enabled = true },
}, },
--TODO: set whichkey categories for keybinds
keys = { keys = {
{ '<leader>=', function() Snacks.dashboard.open() end, desc = 'Dashboard' }, { '<leader>=', function() Snacks.dashboard.open() end, desc = 'Dashboard' },
{ '<leader>gb', function() Snacks.gitbrowse.open() end, desc = 'Open Git Repository in Browser' },
{ '<leader>gl', function() Snacks.lazygit.open() end, desc = 'Open Lazy Git' }, { '<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' },
}, },
} }