Files
nvim-config/lua/plugins/qol.lua

37 lines
711 B
Lua

local config = {
{
"folke/snacks.nvim",
priority = 1000,
lazy = false,
opts = {
bigfile = { enabled = true },
dashboard = { enabled = true },
explorer = { enabled = false },
indent = { enabled = false },
input = { enabled = false },
picker = { enabled = true },
notifier = { enabled = false },
quickfile = { enabled = false },
scope = { enabled = true },
scroll = { enabled = true },
statuscolumn = { enabled = true },
words = { enabled = true },
},
},
{
'stevearc/overseer.nvim',
opts = {},
},
{
"rmagatti/auto-session",
lazy = false,
---@module "auto-session"
opts = {
suppressed_dirs = { "~/", "~/Downloads", "/" },
},
}
}
return config