1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

refactor: rename

This commit is contained in:
jdhao 2022-02-03 12:52:30 +08:00
parent d533859af9
commit 61ae7acc14

View File

@ -8,7 +8,7 @@
" Email: jdhao@hotmail.com " Email: jdhao@hotmail.com
" Blog: https://jdhao.github.io/ " Blog: https://jdhao.github.io/
let g:config_files = [ let s:core_conf_files = [
\ 'globals.vim', \ 'globals.vim',
\ 'options.vim', \ 'options.vim',
\ 'autocommands.vim', \ 'autocommands.vim',
@ -17,6 +17,6 @@ let g:config_files = [
\ 'themes.vim' \ '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) execute printf('source %s/core/%s', stdpath('config'), s:fname)
endfor endfor