dots-of-war/eggs/nvim/lua/plugins/lazyvim.lua

47 lines
894 B
Lua
Raw Permalink Normal View History

2025-01-06 16:37:50 +01:00
return {
{
"LazyVim/LazyVim",
branch = "main",
--commit = "7c7c196a78e936a1bc4cf28e7908e9bd96d75607", -- 0.12
--commit = "b2f750558a3737879f8151e741e7a3988886e37f", -- 0.13
opts = {
defaults = {
autocmds = true, -- lazyvim.config.autocmds
keymaps = true, -- lazyvim.config.keymaps
},
}
},
{
"snacks.nvim",
opts = {
notifier = {
enabled = false, -- TODO: switch out nvim-notify
},
dashboard = {
enabled = false,
},
indent = {
enabled = false,
},
scroll = {
2025-01-26 18:28:51 +01:00
enabled = true,
2025-01-06 16:37:50 +01:00
},
lazygit = {
enabled = false,
},
terminal = {
enabled = false,
},
-- Reemplaces dressing.nvim (for rename)
input = {
enabled = false,
win = {
relative = "cursor",
}
}
}
}
}