aboutsummaryrefslogtreecommitdiffstats
path: root/tests/autoformat_doc.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/autoformat_doc.lua')
-rw-r--r--tests/autoformat_doc.lua20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/autoformat_doc.lua b/tests/autoformat_doc.lua
new file mode 100644
index 0000000..8c0761e
--- /dev/null
+++ b/tests/autoformat_doc.lua
@@ -0,0 +1,20 @@
+vim.api.nvim_create_autocmd("BufWritePre", {
+ pattern = "*",
+ callback = function(args)
+ -- Disable autoformat on certain filetypes
+ local ignore_filetypes = { "sql", "java" }
+ if vim.tbl_contains(ignore_filetypes, vim.bo[args.buf].filetype) then
+ return
+ end
+ -- Disable with a global or buffer-local variable
+ if vim.g.disable_autoformat or vim.b[args.buf].disable_autoformat then
+ return
+ end
+ -- Disable autoformat for files in a certain path
+ local bufname = vim.api.nvim_buf_get_name(args.buf)
+ if bufname:match("/node_modules/") then
+ return
+ end
+ require("conform").format({ timeout_ms = 500, lsp_fallback = true, buf = args.buf })
+ end,
+})