Files
nvim/nvim/lua/plugins/snacks/init.lua
T
janishutz be88287383 feat: new setup using fewer plugins, more reliant on snacks, better completions (#1)
Massively reworked the plugin setup, switched to a simpler completions setup using blink.cmp

Reviewed-on: #1
2026-07-06 09:51:06 +02:00

34 lines
725 B
Lua

return {
"folke/snacks.nvim",
priority = 1000,
lazy = false,
---@type snacks.Config
opts = {
animate = { enabled = true },
bigfile = { enabled = true },
bufdelete = { enabled = true },
dashboard = require("plugins.snacks.modules.dashboard"),
indent = {
enabled = true,
indent = {
enabled = true,
priority = 1,
char = "▎",
},
animate = {
enabled = false,
},
scope = {
char = "▎",
},
},
terminal = require("plugins.snacks.modules.terminal"),
lazygit = { enabled = true },
picker = { enabled = true },
quickfile = { enabled = true },
statuscolumn = { enabled = true },
scope = { enabled = true },
},
keys = require("plugins.snacks.keys.keys"),
}