From 4fe46bddaab8c4a5bf3961db38a8e41190a80833 Mon Sep 17 00:00:00 2001 From: Adithya Nair Date: Wed, 14 Feb 2024 22:01:30 +0530 Subject: [PATCH] enable fidget --- lua/plugins.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lua/plugins.lua b/lua/plugins.lua index 74a7a84..b393699 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -63,4 +63,11 @@ return require("packer").startup(function(use) "petertriho/cmp-git", requires = "nvim-lua/plenary.nvim", }) + + use({ + "j-hui/fidget.nvim", + config = function() + require("fidget").setup() + end, + }) end)