feat: Finish Snacks config
This commit is contained in:
parent
adcdd78525
commit
573e24df9b
1 changed files with 22 additions and 1 deletions
|
@ -5,9 +5,30 @@ local lazyvim_root = require('lib.lazyvim.root')
|
|||
|
||||
require('snacks').setup({
|
||||
bigfile = { enabled = true },
|
||||
dashboard = { enabled = true },
|
||||
notifier = { enabled = true },
|
||||
quickfile = { enabled = true },
|
||||
statuscolumn = { enabled = true },
|
||||
words = { enabled = true },
|
||||
})
|
||||
|
||||
-- Debuggers -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
|
||||
|
||||
_G.dd = function(...)
|
||||
Snacks.debug.inspect(...)
|
||||
end
|
||||
|
||||
_G.bt = function()
|
||||
Snacks.debug.backtrace()
|
||||
end
|
||||
|
||||
vim.print = _G.dd
|
||||
|
||||
-- Notifier -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
|
||||
|
||||
set({ 'n' }, '<LEADER>un', function()
|
||||
Snacks.notifier.hide()
|
||||
end, { desc = 'Dismiss all notifications' })
|
||||
|
||||
-- Buffers -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
|
||||
set({ 'n' }, '<LEADER>bd', function()
|
||||
Snacks.bufdelete()
|
||||
|
|
Loading…
Reference in a new issue