Files
dotfiles/nvim/.config/nvim/lua/vxclutch/lazy/snacks.lua
2024-12-16 21:20:06 -05:00

33 lines
613 B
Lua

return {
"folke/snacks.nvim",
priority = 1000,
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 },
indent = { enabled = true },
input = { enabled = true },
quickfile = { enabled = true },
scroll = { enabled = true },
statuscolumn = { enabled = true },
words = { enabled = true },
},
keys = {
{
"<leader>t",
function()
Snacks.terminal()
end,
},
{
"<leader>lg",
function()
Snacks.lazygit()
end,
},
},
}