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

refactor: remove folding for init.vim

This commit is contained in:
jdhao 2021-12-14 21:47:59 +08:00
parent 06910bac87
commit 9bac7fa4f7

View File

@ -1,4 +1,3 @@
"{ Header info
" Description: This is my personal Nvim configuration supporting Mac, Linux " Description: This is my personal Nvim configuration supporting Mac, Linux
" and Windows, with various plugins configured. This configuration evolves as " and Windows, with various plugins configured. This configuration evolves as
" I learn more about Nvim and becomes more proficient in using Nvim. Since it " I learn more about Nvim and becomes more proficient in using Nvim. Since it
@ -8,9 +7,7 @@
" built over time with a lot of polish. " built over time with a lot of polish.
" Author: Jie-dong Hao " Author: Jie-dong Hao
" Email: jdhao@hotmail.com " Email: jdhao@hotmail.com
"}
"{ Main configurations
let g:config_files = [ let g:config_files = [
\ 'globals.vim', \ 'globals.vim',
\ 'options.vim', \ 'options.vim',
@ -23,4 +20,3 @@ let g:config_files = [
for s:fname in g:config_files for s:fname in g:config_files
execute printf('source %s/core/%s', stdpath('config'), s:fname) execute printf('source %s/core/%s', stdpath('config'), s:fname)
endfor endfor
"}