From 61ae7acc14111611dd4d11d88ffc76e437287eb1 Mon Sep 17 00:00:00 2001 From: jdhao Date: Thu, 3 Feb 2022 12:52:30 +0800 Subject: [PATCH] refactor: rename --- init.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.vim b/init.vim index 91510ac..ea2d67b 100644 --- a/init.vim +++ b/init.vim @@ -8,7 +8,7 @@ " Email: jdhao@hotmail.com " Blog: https://jdhao.github.io/ -let g:config_files = [ +let s:core_conf_files = [ \ 'globals.vim', \ 'options.vim', \ 'autocommands.vim', @@ -17,6 +17,6 @@ let g:config_files = [ \ 'themes.vim' \ ] -for s:fname in g:config_files +for s:fname in s:core_conf_files execute printf('source %s/core/%s', stdpath('config'), s:fname) endfor