Compare commits

..

No commits in common. "cc39b20de78cfdc9cc95e220153f96d8f463b775" and "018768564dc369c83ab7b2586b9a528ea917cd93" have entirely different histories.

2 changed files with 7 additions and 55 deletions

View file

@ -2,38 +2,12 @@
return {
"nvim-lua/plenary.nvim",
{
"stevearc/dressing.nvim",
opts = {},
},
{
"folke/snacks.nvim",
priority = 1000, -- needs to be set up early
lazy = false,
opts = {
bigfiles = { enabled = true },
dashboard = {
enabled = true,
sections = {
{ section = "header" },
{ icon = "", title = "Recent Files", section = "recent_files", indent = 2, padding = 1 },
{ icon = "", title = "Projects", section = "projects", indent = 2, padding = 1 },
{
icon = "",
title = "Git Status",
section = "terminal",
enabled = function()
return Snacks.git.get_root() ~= nil
end,
cmd = "git status --short --branch --renames",
height = 5,
padding = 1,
ttl = 5 * 60,
indent = 3,
},
},
preset = { keys = {} },
},
indent = { enabled = true, animate = { enabled = false } },
input = { enabled = true },
lazygit = { enabled = true, configure = true },
@ -74,18 +48,6 @@ return {
opts = {
extensions = { lazy_nvim = true },
},
keys = {
{
"<leader>,k",
"<cmd>Legendary keymaps<cr>",
desc = "Find keymaps",
},
{
"<leader>,c",
"<cmd>Legendary commands<cr>",
desc = "Find commands",
},
},
},
{
"wsdjeg/rooter.nvim",

View file

@ -12,6 +12,7 @@ return {
opts = {},
},
{
-- Surround operations
"echasnovski/mini.surround",
opts = {},
},
@ -55,18 +56,7 @@ return {
{
-- Label jumping for visible characters
"echasnovski/mini.jump2d",
opts = {
mappings = {
start_jumping = "",
},
},
keys = {
{
"<leader>j",
"<cmd>lua MiniJump2d.start()<cr>",
desc = "Jump to visible",
},
},
opts = {},
},
{
-- File icons
@ -78,11 +68,6 @@ return {
"echasnovski/mini.tabline",
opts = {},
},
{
-- Another picker
"echasnovski/mini.pick",
opts = {},
},
{
-- Decent interactive file management
"echasnovski/mini.files",
@ -97,4 +82,9 @@ return {
},
},
},
{
-- Dashboard
"echasnovski/mini.starter",
opts = {},
},
}