mirror of
https://github.com/Cian-H/my_nvim_config.git
synced 2025-12-22 20:21:57 +00:00
15 lines
334 B
Lua
15 lines
334 B
Lua
return {
|
|
{
|
|
"folke/snacks.nvim",
|
|
priority = 1000,
|
|
lazy = false,
|
|
---@type snacks.Config
|
|
opts = {
|
|
bigfile = { enabled = true },
|
|
lazygit = { enabled = true },
|
|
quickfile = { enabled = true },
|
|
},
|
|
keys = require("config.keys").lazygit,
|
|
},
|
|
}
|