From 06a5265dc89bb204146d449477bfa630811a4d02 Mon Sep 17 00:00:00 2001 From: Feliche-Demian Netliukh <51330172+Demianeen@users.noreply.github.com> Date: Tue, 11 Jun 2024 16:13:34 +0100 Subject: [PATCH] fix typo --- lua/lazyvim/plugins/extras/util/chezmoi.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/lazyvim/plugins/extras/util/chezmoi.lua b/lua/lazyvim/plugins/extras/util/chezmoi.lua index c2c3377f..99f9b82a 100644 --- a/lua/lazyvim/plugins/extras/util/chezmoi.lua +++ b/lua/lazyvim/plugins/extras/util/chezmoi.lua @@ -3,10 +3,10 @@ return { { -- highlighting for chezmoi files template files "alker0/chezmoi.vim", - init = function() - vim.g.chezmoi#use_tmp_buffer = 1 - vim.g.chezmoi#source_dir_path = os.getenv("HOME") .. "/.local/share/chezmoi", - end, + init = function() + vim.g["chezmoi#use_tmp_buffer"] = 1 + vim.g["chezmoi#source_dir_path"] = os.getenv("HOME") .. "/.local/share/chezmoi" + end, }, { "xvzc/chezmoi.nvim",