update completion

This commit is contained in:
2025-02-18 17:31:23 +02:00
parent f7ff3f6f4f
commit 66fd13ec25
2 changed files with 15 additions and 3 deletions

View File

@@ -49,3 +49,11 @@ autocmd({ 'BufWritePre' }, {
end,
})
autocmd({'FileType'}, {
group = CrentistGroup,
pattern = { 'json' },
callback = function (e)
vim.keymap.set("n", "<M-F>", function() vim.cmd('silent %!jq .') end, {buffer = e.buf})
end
})