feat(working): first working condition

This commit is contained in:
darwincereska
2025-11-19 08:59:51 -05:00
parent 5a5c81eb60
commit c86f52f5fb
31 changed files with 789 additions and 283 deletions

27
lua/plugins/notify.lua Normal file
View File

@@ -0,0 +1,27 @@
return {
"rcarriga/nvim-notify",
event = "VeryLazy",
config = function()
local notify = require("notify")
notify.setup({
background_colour = "#000000",
fps = 60,
icons = {
DEBUG = "",
ERROR = "",
INFO = "",
TRACE = "",
WARN = ""
},
level = 2,
minimum_width = 50,
render = "compact",
stages = "fade_in_slide_out",
timeout = 3000,
top_down = true,
})
-- Set nvim-notify as the default notification handler
vim.notify = notify
end,
}