remove typst autocmd

This commit is contained in:
cscherr 2025-05-19 11:26:32 +02:00
parent 4033f5fe94
commit a2f6403fd5
Signed by: cscherrNT
GPG key ID: 8E2B45BC51A27EA7

View file

@ -90,14 +90,3 @@ vim.api.nvim_create_autocmd('ColorScheme', {
vim.cmd [[highlight Comment gui=NONE]] -- no italics for comments
end,
})
-- pin main.typ for typst projects
vim.api.nvim_create_autocmd('FileType', {
group = augroup,
pattern = {
'typst',
},
callback = function()
print "Don't forget to pin the main typst file for multifile support: <leader>tp"
end,
})