From 22c167ee29b9cb01de8df6f847bfa73b6a7ff15b Mon Sep 17 00:00:00 2001 From: 409 Date: Thu, 6 Jun 2024 11:49:17 +0200 Subject: [PATCH] feat: themed devicons (tiny-devicons-auto-colors) --- lua/409/plugins/util.lua | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/lua/409/plugins/util.lua b/lua/409/plugins/util.lua index a5c2384..8e94a94 100644 --- a/lua/409/plugins/util.lua +++ b/lua/409/plugins/util.lua @@ -17,13 +17,21 @@ return { }, }, "nvim-tree/nvim-web-devicons", + { + "rachartier/tiny-devicons-auto-colors.nvim", + dependencies = { "nvim-tree/nvim-web-devicons" }, + event = "VeryLazy", + config = function() + require("tiny-devicons-auto-colors").setup() + end + }, { "RRethy/vim-illuminate", event = "VeryLazy", }, { - "echasnovski/mini.surround", - version = "*", - config = true - }, + "echasnovski/mini.surround", + version = "*", + config = true, + }, }