From: Stefan Huber Date: Thu, 17 Apr 2025 07:57:23 +0000 (+0200) Subject: plugins: Add bibtex-tidy formatter X-Git-Url: https://git.sthu.org/?a=commitdiff_plain;h=50764b4901696fa89727c279a248b9b49d6b67c1;p=vimconf.git plugins: Add bibtex-tidy formatter --- diff --git a/plugins-full.vim.example b/plugins-full.vim.example index 962314a..8b35765 100644 --- a/plugins-full.vim.example +++ b/plugins-full.vim.example @@ -286,6 +286,13 @@ EOF log_level = vim.log.levels.WARN, -- All formatter configurations are opt-in filetype = { + bib = { + function() + return { + exe = "bibtex-tidy" + } + end + }, c = { require("formatter.filetypes.c").clangformat }, cpp = { require("formatter.filetypes.cpp").clangformat }, css = require('formatter.filetypes.css').prettier,