1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-04-02 21:19:49 +00:00
dotfiles/.config/nvim/lua/plugins/illuminate.lua
Daniel Carrillo 7d01253a29
[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.
2025-03-30 18:01:59 +02:00

14 lines
204 B
Lua

require("illuminate").configure({
delay = 200,
filetypes_denylist = {
"TelescopePrompt",
"Trouble",
"avante",
"lspsagafinder",
"mason",
"snacks_picker_list",
"packer",
"starter",
},
})