Added catppuccin, lualine, mini.paris
This commit is contained in:
parent
1915cea32e
commit
4f7336e87e
5 changed files with 69 additions and 4 deletions
20
lua/custom/plugins/mini-pairs.lua
Normal file
20
lua/custom/plugins/mini-pairs.lua
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
return {
|
||||
"echasnovski/mini.pairs",
|
||||
event = "VeryLazy",
|
||||
opts = {},
|
||||
keys = {
|
||||
{
|
||||
"<leader>up",
|
||||
function()
|
||||
local Util = require("lazy.core.util")
|
||||
vim.g.minipairs_disable = not vim.g.minipairs_disable
|
||||
if vim.g.minipairs_disable then
|
||||
Util.warn("Disabled auto pairs", { title = "Option" })
|
||||
else
|
||||
Util.info("Enabled auto pairs", { title = "Option" })
|
||||
end
|
||||
end,
|
||||
desc = "Toggle auto pairs",
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue