From 9de5d08a5a374609f91a65c4618d89c1235026b1 Mon Sep 17 00:00:00 2001 From: raf Date: Wed, 11 Dec 2024 00:30:05 +0100 Subject: [PATCH] add chezmoi syntax support --- lua/custom/plugins/init.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index e54636c5..a9322e39 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -160,4 +160,13 @@ return { }) end, }, + { + 'alker0/chezmoi.vim', + lazy = false, + init = function() + -- This option is required. + vim.g['chezmoi#use_tmp_buffer'] = true + -- add other options here if needed. + end, + }, }