1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-03 07:49:25 +00:00

[neovim] replace neo-tree with snacks.nvim

Replace neo-tree.nvim with snacks.nvim for file explorer functionality and
remove several other plugins including:
- mini-animate
- mini-starter
- indent-blankline

The snacks.nvim plugin provides better file explorer, dashboard, indentation
guides, and other UI improvements in a more cohesive package.

Also removed the large file autocommand as snacks.nvim handles this with its
bigfile module.
This commit is contained in:
2025-03-29 18:26:13 +01:00
parent 8e93236e49
commit 7d01253a29
15 changed files with 71 additions and 249 deletions

View File

@ -90,7 +90,6 @@ require("lazy").setup({
-- Plugins
{ "nvim-lua/plenary.nvim", lazy = true },
{ "echasnovski/mini.animate", event = "VeryLazy", version = "*" },
{ "echasnovski/mini.comment", event = "VeryLazy", version = "*" },
{ "echasnovski/mini.pairs", event = "VeryLazy", version = "*" },
{ "echasnovski/mini.surround", event = "VeryLazy", version = "*" },
@ -102,7 +101,6 @@ require("lazy").setup({
{ "akinsho/bufferline.nvim", event = "VeryLazy", version = "v4.*" },
{ "moll/vim-bbye" },
{ "nvim-lualine/lualine.nvim", event = "VeryLazy" },
{ "lukas-reineke/indent-blankline.nvim", event = "BufReadPost", main = "ibl" },
{ "nvim-zh/auto-save.nvim", event = "BufReadPost" },
{
"folke/noice.nvim",
@ -122,9 +120,9 @@ require("lazy").setup({
},
{ "nvim-treesitter/nvim-treesitter", event = "BufReadPost" },
{
"nvim-neo-tree/neo-tree.nvim",
version = "v3.x",
dependencies = { "MunifTanjim/nui.nvim" },
"folke/snacks.nvim",
priority = 1000,
lazy = false,
},
{ "taybart/b64.nvim", event = "VeryLazy" },
{ "tenxsoydev/karen-yank.nvim", event = "VeryLazy", config = true },
@ -318,6 +316,6 @@ require("lazy").setup({
},
},
},
{ "towolf/vim-helm", ft = "helm" },
{ "robbles/logstash.vim" },
}, lazy_opts)