some changes for the better

This commit is contained in:
pika 2025-05-05 17:50:29 +02:00
parent ead2540502
commit 27622c55c0
7 changed files with 431 additions and 31 deletions

View file

@ -189,36 +189,36 @@ return {
-- ╭────────────────────────────────────╮
-- │ notify for excellent notifications │
-- ╰────────────────────────────────────╯
{
"rcarriga/nvim-notify",
config = function()
require("notify").setup({
stages = "slide",
background_colour = "FloatShadow",
max_width = 120,
timeout = 2750,
render = "wrapped-compact",
-- Minimum/Maximum width for notification windows
minimum_width = 30,
maximum_width = 120,
-- Function called when a new window is opened, use for changing win settings/config
on_open = nil,
-- Function called when a window is closed
on_close = nil,
icons = {
ERROR = "", -- alternate symbol 
WARN = "",
INFO = "",
DEBUG = "",
TRACE = "",
},
})
vim.notify = require("notify")
end,
vim.keymap.set("n", "<leader>tn", "<cmd>Telescope notify<CR>", { desc = "Telescope show Notifications" }),
},
-- {
-- "rcarriga/nvim-notify",
-- config = function()
-- require("notify").setup({
-- stages = "slide",
-- background_colour = "FloatShadow",
-- max_width = 120,
-- timeout = 2750,
-- render = "wrapped-compact",
-- -- Minimum/Maximum width for notification windows
-- minimum_width = 30,
-- maximum_width = 120,
--
-- -- Function called when a new window is opened, use for changing win settings/config
-- on_open = nil,
--
-- -- Function called when a window is closed
-- on_close = nil,
-- icons = {
-- ERROR = "", -- alternate symbol 
-- WARN = "",
-- INFO = "",
-- DEBUG = "",
-- TRACE = "",
-- },
-- })
-- vim.notify = require("notify")
-- end,
-- vim.keymap.set("n", "<leader>tn", "<cmd>Telescope notify<CR>", { desc = "Telescope show Notifications" }),
-- },
-- ╭────────────────────────────────╮
-- │ lualine - another bar for nvim │