chore(nvim): added a few things to config
This commit is contained in:
25
.config/nvim/lua/plugins/mini.lua
Normal file
25
.config/nvim/lua/plugins/mini.lua
Normal 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
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user