Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yulonghu/vim-easy-config
vim-simple-config: The simple configuration everyone will like it.
https://github.com/yulonghu/vim-easy-config
Last synced: about 2 months ago
JSON representation
vim-simple-config: The simple configuration everyone will like it.
- Host: GitHub
- URL: https://github.com/yulonghu/vim-easy-config
- Owner: yulonghu
- License: apache-2.0
- Created: 2020-08-20T13:42:32.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-29T02:48:59.000Z (over 2 years ago)
- Last Synced: 2024-07-08T00:18:34.280Z (6 months ago)
- Language: Vim Script
- Homepage:
- Size: 53.7 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# easy-config.vim
easy-config.vim | [Vim IDE](https://github.com/yulonghu/vim-easy-config/blob/master/README_IDE.md)
* 如果您是 Vim 新手,请毫不犹豫地安装它吧,它将是您的 Vim 起点。
* 如果您正在到处寻找一个通用性强、实战性强的 Vim 配置。
* 如果你想让 vimrc 基础配置变得超级简单。## 三种安装方式
#### 1、手动安装
```bash
$ mkdir -p ~/.vim/plugin
$ cd ~/.vim/plugin
$ git clone https://github.com/yulonghu/vim-easy-config.git
```#### 2、vim-plug
安装 [vim-plug](https://github.com/junegunn/vim-plug) 插件管理器
```bash
$ curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
```**Example**
```bash
call plug#begin('~/.vim/plugged')
Plug 'yulonghu/vim-easy-config'
call plug#end()
```保存 `~/.vimrc` or `:source ~/.vimrc` ,运行命令 `:PlugInstall` 完成安装。
定期更新已安装的插件 `:PlugUpdate`。
出现安装失败时,重试更新请按 `R`。安装成功后,查看本次更新内容请按 `D`。#### 3、vim-vundle
安装 [vundle](https://github.com/VundleVim/Vundle.vim) 插件管理器
```bash
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
```**Example**
```bash
call vundle#begin()
Plugin 'yulonghu/vim-easy-config'
call vundle#end()
```
保存 `~/.vimrc` or `:source ~/.vimrc` ,运行命令 `:PluginInstall` 完成安装。
定期更新已安装的插件 `:BundleUpdate`。## 配色方案
vim-easy-config 自带了 3 种经典 Vim 配色方案,默认选择配色 `wombat256mod`
注意: 如果需要在文件 `.vimrc` 里自定义 `colorscheme`, 请先关闭 vim-easy-config 默认配色
| colorscheme | GitHub |
| --- | --- |
| gruvbox | https://github.com/morhetz/gruvbox |
| molokai | https://github.com/fcevado/molokai_dark |
| wombat256mod | https://github.com/vim-scripts/wombat256.vim |## Contributors
*Thank you!*