chore(nvim): fix neoformat md

main
sudo pacman -Syu 2023-07-25 17:08:31 +07:00
parent 8e6834815a
commit a6a793eb9d
1 changed files with 1 additions and 1 deletions

View File

@ -349,7 +349,7 @@ require("lazy").setup({
local augroup = vim.api.nvim_create_augroup("UserNeoformatConfig", {})
vim.api.nvim_create_autocmd("BufWritePre", {
group = augroup,
pattern = { "*.lua", ".md" },
pattern = { "*.lua", "*.md" },
command = "Neoformat",
})
end,