replace notify with fidget

This commit is contained in:
Adithya 2024-06-13 00:06:14 +05:30
parent 4897b958b1
commit 24ecde98cf
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C
2 changed files with 14 additions and 11 deletions

14
lua/plugins/fidget.lua Normal file
View file

@ -0,0 +1,14 @@
local Plugin = { "j-hui/fidget.nvim" }
Plugin.event = "VeryLazy";
Plugin.opts = {
notification = {
override_vim_notify = true,
view = {
stack_upwards = false,
},
},
}
return Plugin

View file

@ -1,11 +0,0 @@
local Plugin = { "rcarriga/nvim-notify" }
function Plugin.init()
vim.opt.termguicolors = true
end
function Plugin.config()
vim.notify = require("notify")
end
return Plugin