chore(nvim): added a few things to config

This commit is contained in:
Afonso Franco 2024-07-31 14:23:19 +01:00
parent dfad8fb88d
commit 91728df4b9
Signed by: afonso
SSH key fingerprint: SHA256:gkVPzsQQJzqi21ntQBV6pXTx4bYI53rFGI4XtvCpwd4
4 changed files with 40 additions and 9 deletions

View file

@ -0,0 +1,25 @@
return {
{
'echasnovski/mini.ai',
version = false,
opts = {}
},
{
'echasnovski/mini.notify',
version = false,
config = function()
vim.api.nvim_set_hl(0, 'MiniNotifyNormal', { link = 'Normal' })
vim.api.nvim_set_hl(0, 'MiniNotifyBorder', { link = 'Normal' })
require("mini.notify").setup({
-- Window options
window = {
-- Floating window config
config = {},
-- Value of 'winblend' option
},
})
end
},
}