Nvim: add new plugins

This commit is contained in:
Robert Kmieć
2024-02-29 23:25:41 +01:00
parent 05e8624509
commit 4bd5c09035
19 changed files with 234 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
return {
"rcarriga/nvim-notify",
opts = {
stages = "static",
fps = 0,
on_open = function(win)
if vim.api.nvim_win_is_valid(win) then
vim.api.nvim_win_set_config(win, { border = "single" })
end
end,
},
}