diff --git a/nvim/ftdetect/ndjson.lua b/nvim/ftdetect/ndjson.lua new file mode 100644 index 00000000..0ed38929 --- /dev/null +++ b/nvim/ftdetect/ndjson.lua @@ -0,0 +1,5 @@ +vim.filetype.add({ + pattern = { + ['.*/.*ndjson.*'] = 'json', + }, +})