From a893ddf25ce03f6985b221e20c2a452ab1a91450 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Tue, 22 Feb 2022 08:46:12 +0100 Subject: [PATCH] feat: use delimitMate --- lua/plugins.lua | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/lua/plugins.lua b/lua/plugins.lua index b58e98f..19af637 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -108,6 +108,9 @@ return require('packer').startup(function(use) config = function() require('plugins.telescope') end, }) + -- automatic pairs + use({"Raimondi/delimitMate"}) + -- markdown preview use({'iamcco/markdown-preview.nvim'}) @@ -122,14 +125,6 @@ return require('packer').startup(function(use) end, }) - -- auto-close brackets - use({ - "windwp/nvim-autopairs", - config = function () - require("nvim-autopairs").setup({}) - end, - }) - -- buffer closing use({ "sar/bbye.nvim"