From ecfda4f6a6be3fee5b48c09fb6db81771bc5d394 Mon Sep 17 00:00:00 2001 From: Joost Agterhoek Date: Mon, 14 Jul 2025 15:58:29 +0200 Subject: [PATCH] for markdown files --- lua/plugins/autoclose.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lua/plugins/autoclose.lua diff --git a/lua/plugins/autoclose.lua b/lua/plugins/autoclose.lua new file mode 100644 index 0000000..6f882b2 --- /dev/null +++ b/lua/plugins/autoclose.lua @@ -0,0 +1,10 @@ +return { + "m4xshen/autoclose.nvim", + config = function() + require("autoclose").setup({ + options = { + enabled_filetypes = { "markdown" }, + }, + }) + end, +}