From fa1bff94b4e78e95570f97a0e8ce0b9cdf27a143 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Fri, 25 Jul 2025 10:02:59 +0200 Subject: [PATCH] Add .json.model fs extension --- nvim/lua/settings.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nvim/lua/settings.lua b/nvim/lua/settings.lua index 3267781..a2ea0c5 100644 --- a/nvim/lua/settings.lua +++ b/nvim/lua/settings.lua @@ -161,6 +161,14 @@ vim.api.nvim_create_autocmd("FileType", { end, }) +vim.filetype.add({ + extension = { + -- appsettings.json.model at work + model = 'json', + }, +}) + + vim.cmd.colorscheme("catppuccin") if vim.g.have_nerd_font then