1
0

Prune some plugins

This commit is contained in:
Patrick Auernig 2024-09-30 17:03:31 +02:00
parent 11e76be35f
commit 55ac079ff0
2 changed files with 0 additions and 29 deletions

View File

@ -1,18 +0,0 @@
local spec = {
"windwp/nvim-autopairs",
}
spec.dependencies = {
"hrsh7th/nvim-cmp",
}
spec.config = function()
local cmp_autopairs = require("nvim-autopairs.completion.cmp")
local cmp = require("cmp")
require("nvim-autopairs").setup()
cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done())
end
return spec

View File

@ -1,11 +0,0 @@
local spec = {
"folke/zen-mode.nvim"
}
spec.opts = {}
spec.keys = {
{ "<Leader>zz", "<cmd>ZenMode<CR>", desc = "Toggle Zen mode" },
}
return spec