From 0001a15dde84b6bc2d5ddc7d0e4f47f06737ee2d Mon Sep 17 00:00:00 2001 From: "thomas g. lopes" Date: Tue, 10 Mar 2026 18:19:15 +0000 Subject: [PATCH] jsonl --- nvim/files/lua/set.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nvim/files/lua/set.lua b/nvim/files/lua/set.lua index 82e3b32..a036e56 100644 --- a/nvim/files/lua/set.lua +++ b/nvim/files/lua/set.lua @@ -95,3 +95,10 @@ vim.api.nvim_create_autocmd("TextYankPost", { vim.highlight.on_yank({ timeout = 100 }) end, }) + +-- Treat .jsonl files as JSON for syntax highlighting and tree-sitter +vim.filetype.add({ + extension = { + jsonl = "json", + }, +})