Compare commits
No commits in common. "cc39b20de78cfdc9cc95e220153f96d8f463b775" and "018768564dc369c83ab7b2586b9a528ea917cd93" have entirely different histories.
cc39b20de7
...
018768564d
2 changed files with 7 additions and 55 deletions
|
@ -2,38 +2,12 @@
|
||||||
|
|
||||||
return {
|
return {
|
||||||
"nvim-lua/plenary.nvim",
|
"nvim-lua/plenary.nvim",
|
||||||
{
|
|
||||||
"stevearc/dressing.nvim",
|
|
||||||
opts = {},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"folke/snacks.nvim",
|
"folke/snacks.nvim",
|
||||||
priority = 1000, -- needs to be set up early
|
priority = 1000, -- needs to be set up early
|
||||||
lazy = false,
|
lazy = false,
|
||||||
opts = {
|
opts = {
|
||||||
bigfiles = { enabled = true },
|
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 } },
|
indent = { enabled = true, animate = { enabled = false } },
|
||||||
input = { enabled = true },
|
input = { enabled = true },
|
||||||
lazygit = { enabled = true, configure = true },
|
lazygit = { enabled = true, configure = true },
|
||||||
|
@ -74,18 +48,6 @@ return {
|
||||||
opts = {
|
opts = {
|
||||||
extensions = { lazy_nvim = true },
|
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",
|
"wsdjeg/rooter.nvim",
|
||||||
|
|
|
@ -12,6 +12,7 @@ return {
|
||||||
opts = {},
|
opts = {},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
-- Surround operations
|
||||||
"echasnovski/mini.surround",
|
"echasnovski/mini.surround",
|
||||||
opts = {},
|
opts = {},
|
||||||
},
|
},
|
||||||
|
@ -55,18 +56,7 @@ return {
|
||||||
{
|
{
|
||||||
-- Label jumping for visible characters
|
-- Label jumping for visible characters
|
||||||
"echasnovski/mini.jump2d",
|
"echasnovski/mini.jump2d",
|
||||||
opts = {
|
opts = {},
|
||||||
mappings = {
|
|
||||||
start_jumping = "",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
keys = {
|
|
||||||
{
|
|
||||||
"<leader>j",
|
|
||||||
"<cmd>lua MiniJump2d.start()<cr>",
|
|
||||||
desc = "Jump to visible",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
-- File icons
|
-- File icons
|
||||||
|
@ -78,11 +68,6 @@ return {
|
||||||
"echasnovski/mini.tabline",
|
"echasnovski/mini.tabline",
|
||||||
opts = {},
|
opts = {},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
-- Another picker
|
|
||||||
"echasnovski/mini.pick",
|
|
||||||
opts = {},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
-- Decent interactive file management
|
-- Decent interactive file management
|
||||||
"echasnovski/mini.files",
|
"echasnovski/mini.files",
|
||||||
|
@ -97,4 +82,9 @@ return {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
-- Dashboard
|
||||||
|
"echasnovski/mini.starter",
|
||||||
|
opts = {},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue