nvim/lua/plugins/snacks.lua
2024-11-19 19:28:46 +00:00

78 lines
1.8 KiB
Lua

return {
'folke/snacks.nvim',
priority = 1000,
version = false,
lazy = false,
---@type snacks.Config
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
bigfile = { enabled = true },
notifier = { enabled = true },
quickfile = { enabled = true },
statuscolumn = { enabled = true },
words = { enabled = true },
dashboard = {
sections = {
{ section = 'header' },
{ section = 'keys', gap = 1, padding = 1 },
{ pane = 2, icon = '', title = 'Recent Files', section = 'recent_files', indent = 2, padding = 1 },
{ pane = 2, icon = '', title = 'Projects', section = 'projects', indent = 2, padding = 1 },
{
pane = 2,
icon = '',
title = 'Git Status',
section = 'terminal',
enabled = vim.fn.isdirectory('.git') == 1,
cmd = 'hub status --short --branch --renames',
height = 5,
padding = 1,
ttl = 5 * 60,
indent = 3,
},
{ section = 'startup' },
},
},
},
keys = {
{
'<space>g',
function()
Snacks.lazygit()
end,
desc = 'Lazygit',
},
{
'<space>gf',
function()
Snacks.lazygit.log_file()
end,
desc = 'Lazygit Current File History',
},
{
'<space>gl',
function()
Snacks.lazygit.log()
end,
desc = 'Lazygit Log (cwd)',
},
{
'<return>',
function()
Snacks.words.jump(vim.v.count1)
end,
desc = 'Next Reference',
mode = { 'n' },
},
{
'<S-CR>',
function()
Snacks.words.jump(-vim.v.count1)
end,
desc = 'Prev Reference',
mode = { 'n' },
},
},
}