From 6c0d5b1678cc434210ee407893a35d67b2b3f7b9 Mon Sep 17 00:00:00 2001 From: 409 Date: Fri, 31 Jan 2025 13:53:14 +0100 Subject: [PATCH] fix(theme)!: oil icon colors --- lua/409/plugins/util.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lua/409/plugins/util.lua b/lua/409/plugins/util.lua index ec7ba4e..aeff0cb 100644 --- a/lua/409/plugins/util.lua +++ b/lua/409/plugins/util.lua @@ -22,7 +22,11 @@ return { dependencies = { "nvim-tree/nvim-web-devicons" }, event = "VeryLazy", config = function() - require("tiny-devicons-auto-colors").setup() + local theme_colors = require("dracula").colors() + + require("tiny-devicons-auto-colors").setup({ + colors = theme_colors, + }) end, }, {