From 0561e714bb476d936e51f6e49292542712255dec Mon Sep 17 00:00:00 2001 From: Leander <80996591+m0ntagur@users.noreply.github.com> Date: Sat, 13 Aug 2022 00:31:07 +0200 Subject: Add files via upload --- nvim/plugin/autopairs.lua | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 nvim/plugin/autopairs.lua (limited to 'nvim/plugin/autopairs.lua') diff --git a/nvim/plugin/autopairs.lua b/nvim/plugin/autopairs.lua new file mode 100644 index 0000000..f04342b --- /dev/null +++ b/nvim/plugin/autopairs.lua @@ -0,0 +1,6 @@ +local status, autopairs = pcall(require, "nvim-autopairs") +if (not status) then return end + +autopairs.setup({ + disable_filetype = { "TelescopePrompt" }, +}) \ No newline at end of file -- cgit v1.3.1