plugins/mini: configLocation mkBefore

We want the mini icons and mockDevIcons config to be earlier than
plugins that request an icon provider.
This commit is contained in:
Austin Horstman 2024-12-15 12:33:04 -06:00
parent cef7414b03
commit d0040391e8
No known key found for this signature in database

View file

@ -5,6 +5,8 @@
lib.nixvim.neovim-plugin.mkNeovimPlugin {
name = "mini";
packPathName = "mini.nvim";
# Just want it before most other plugins for the icons provider.
configLocation = lib.mkOrder 800 "extraConfigLua";
maintainers = [ lib.maintainers.khaneliman ];