diff --git a/lua/cp/config.lua b/lua/cp/config.lua index 4304a31..fcd1e96 100644 --- a/lua/cp/config.lua +++ b/lua/cp/config.lua @@ -12,6 +12,7 @@ ---@class CpPlatformOverrides ---@field extension? string ---@field commands? CpLangCommands +---@field template? string ---@class CpPlatform ---@field enabled_languages string[] @@ -259,6 +260,9 @@ local function merge_lang(base, ov) if ov.commands then out.commands = vim.tbl_deep_extend('force', out.commands or {}, ov.commands or {}) end + if ov.template then + out.template = ov.template + end return out end