nvim: Add djot filetype detection

This commit is contained in:
Marty Oehme 2025-02-18 21:24:01 +01:00
parent f3fb0998f5
commit 65bb7aa034
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A

View file

@ -0,0 +1,7 @@
-- Set filetypes for 'djot' - an update markdown alternative
-- https://github.com/jgm/djot
vim.filetype.add({
extension = {
dj = "djot",
},
})