# vim_vundle_cfg **Repository Path**: doku-wiki/vim_vundle_cfg ## Basic Information - **Project Name**: vim_vundle_cfg - **Description**: 使用vim的插件管理器 Vundle.vim 后的vim配置文件。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-12-30 - **Last Updated**: 2026-04-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 简介 使用了 Vundle.vim 插件管理器的vim的配置文件 ## 使用方式 1. 先克隆本仓库 ```bash $ git clone https://gitee.com/doku-wiki/vim_vundle_cfg.git ~/.vim ``` 2. 然后启用本仓库中的配置文件 如果不存在文件 `~/.vimrc` ,那么不用做任何配置。 如果存在文件 `~/.vimrc` ,那么需要做如下操作: ```bash $ vim ~/.vimrc ``` 然后在文件 `~/.vimrc` 中添加如下内容: ``` " 加载管理自定义插件的vim配置文件 if filereadable(expand("~/.vim/vimrc")) source ~/.vim/vimrc endif ```