2017-02-09 22:04:14 +08:00
|
|
|
[![SpaceVim](https://raw.githubusercontent.com/SpaceVim/SpaceVim/dev/docs/logo.png)](https://spacevim.org)
|
|
|
|
|
|
|
|
[Home](https://spacevim.org) |
|
|
|
|
[Documentation](https://spacevim.org/documentation) |
|
|
|
|
[Twitter](https://twitter.com/SpaceVim) |
|
|
|
|
[Community](https://spacevim.org/community) |
|
|
|
|
[Gitter Chat](https://gitter.im/SpaceVim/SpaceVim)
|
2017-01-10 00:27:52 +08:00
|
|
|
|
2017-01-08 13:50:17 +08:00
|
|
|
[![Build Status](https://travis-ci.org/SpaceVim/SpaceVim.svg?branch=dev)](https://travis-ci.org/SpaceVim/SpaceVim)
|
2017-01-09 13:35:05 +08:00
|
|
|
![Version 0.1.0-dev](https://img.shields.io/badge/version-0.1.0--dev-yellow.svg?style=flat-square)
|
|
|
|
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](LICENSE)
|
2017-01-08 13:50:17 +08:00
|
|
|
[![Doc](https://img.shields.io/badge/doc-%3Ah%20SpaceVim-orange.svg?style=flat-square)](doc/SpaceVim.txt)
|
2017-02-05 10:03:28 +08:00
|
|
|
|
2017-01-19 22:08:40 +08:00
|
|
|
|
2017-01-28 23:03:40 +08:00
|
|
|
#### Introduction
|
|
|
|
|
2017-02-05 09:55:10 +08:00
|
|
|
![2017-02-05_1359x721](https://cloud.githubusercontent.com/assets/13142418/22622826/f88881a8-eb80-11e6-880b-b12e0430689a.png)
|
|
|
|
|
2017-01-14 13:12:49 +08:00
|
|
|
[SpaceVim](https://github.com/SpaceVim/SpaceVim) is a Modular configuration, a bundle of custom settings and plugins for Vim,
|
2017-01-30 00:56:37 +08:00
|
|
|
here we call them layers, each layer has different plugins and config, users just need
|
2017-01-14 13:06:18 +08:00
|
|
|
to select the layers they need. It got inspired by [spacemacs](https://github.com/syl20bnr/spacemacs). If you use SpaceVim,
|
|
|
|
please star it on github. It's a great way of getting feedback and gives me the kick to
|
|
|
|
put more time into development.
|
2017-01-04 21:04:42 +08:00
|
|
|
|
2017-01-14 13:06:18 +08:00
|
|
|
If you encounter any bugs or have feature requests, just open an issue
|
|
|
|
report on Github.
|
|
|
|
|
|
|
|
For learning about Vim in general, read [vim-galore](https://github.com/mhinz/vim-galore).
|
2016-12-26 23:59:21 +08:00
|
|
|
|
2017-01-11 17:23:53 +08:00
|
|
|
[![Throughput Graph](https://graphs.waffle.io/SpaceVim/SpaceVim/throughput.svg)](https://waffle.io/SpaceVim/SpaceVim/metrics/throughput)
|
2017-01-02 18:19:34 +08:00
|
|
|
|
2017-01-08 21:27:43 +08:00
|
|
|
#### Install
|
2017-01-04 00:20:25 +08:00
|
|
|
|
2017-01-28 23:11:29 +08:00
|
|
|
##### Linux/Mac
|
2017-01-28 19:54:50 +08:00
|
|
|
|
2017-01-04 00:20:25 +08:00
|
|
|
```sh
|
2017-01-07 12:17:46 +08:00
|
|
|
curl -sLf https://spacevim.org/install.sh | bash
|
2017-01-04 00:20:25 +08:00
|
|
|
```
|
2017-01-04 20:42:05 +08:00
|
|
|
before use SpaceVim, you should install the plugin by `call dein#install()`
|
|
|
|
|
2017-01-30 00:56:37 +08:00
|
|
|
Installation of neovim/vim with python support:
|
2017-01-11 17:23:53 +08:00
|
|
|
> [neovim installation](https://github.com/neovim/neovim/wiki/Installing-Neovim)
|
2017-01-04 20:44:05 +08:00
|
|
|
|
|
|
|
> [Building Vim from source](https://github.com/Valloric/YouCompleteMe/wiki/Building-Vim-from-source)
|
2017-01-04 00:20:25 +08:00
|
|
|
|
2017-01-07 00:43:13 +08:00
|
|
|
for more info about the install script, please check:
|
|
|
|
|
|
|
|
```sh
|
2017-01-07 12:17:46 +08:00
|
|
|
curl -sLf https://spacevim.org/install.sh | bash -s -- -h
|
2017-01-07 00:43:13 +08:00
|
|
|
```
|
|
|
|
|
2017-01-08 21:27:43 +08:00
|
|
|
##### windows support
|
|
|
|
|
2017-01-08 21:30:02 +08:00
|
|
|
- For vim in windows, please just clone this repo as vimfiles in you Home directory.
|
2017-01-30 17:37:52 +08:00
|
|
|
by default, when open a cmd, the current dir is your Home directory, run this command in cmd.
|
2017-01-30 00:56:37 +08:00
|
|
|
make sure you have a backup of your own vimfiles.
|
2017-01-08 21:27:43 +08:00
|
|
|
|
2017-01-22 23:52:09 +08:00
|
|
|
```sh
|
|
|
|
git clone https://github.com/SpaceVim/SpaceVim.git vimfiles
|
|
|
|
```
|
2017-01-08 21:27:43 +08:00
|
|
|
|
|
|
|
- For neovim in windows, please clone this repo as `AppData\Local\nvim` in your home directory.
|
2017-01-10 18:51:21 +08:00
|
|
|
for more info, please check out [neovim's wiki](https://github.com/neovim/neovim/wiki/Installing-Neovim).
|
2017-01-30 17:37:52 +08:00
|
|
|
by default, when open a cmd, the current dir is your Home directory, run this command in cmd.
|
2017-01-08 21:27:43 +08:00
|
|
|
|
2017-01-22 23:52:09 +08:00
|
|
|
```sh
|
|
|
|
git clone https://github.com/SpaceVim/SpaceVim.git AppData\Local\nvim
|
|
|
|
```
|
2017-01-08 21:27:43 +08:00
|
|
|
|