1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 19:30:01 +02:00
dotfiles/nvim/lua/user/plugins/ui.lua

26 lines
564 B
Lua

return {
-- Nicer notifications
{
"j-hui/fidget.nvim",
opts = {
notification = {
window = {
normal_hl = "Pmenu",
winblend = 5,
border = { " " }
}
},
progress = {
display = {
done_ttl = 2,
}
}
}
},
-- File explorer
{ import = "user.plugins.ui.neotree" },
{
"folke/which-key.nvim",
event = "VeryLazy",
}
}