plugins/web-devicons: configLocation mkBefore

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

View file

@ -7,6 +7,8 @@ lib.nixvim.neovim-plugin.mkNeovimPlugin {
packPathName = "nvim-web-devicons"; packPathName = "nvim-web-devicons";
moduleName = "nvim-web-devicons"; moduleName = "nvim-web-devicons";
package = "nvim-web-devicons"; package = "nvim-web-devicons";
# Just want it before most other plugins for the icons provider.
configLocation = lib.mkOrder 800 "extraConfigLua";
maintainers = [ lib.maintainers.refaelsh ]; maintainers = [ lib.maintainers.refaelsh ];