#vimto
vimto is an open source vim configuration for Linux, OSX, and Windows.
##Installation
vimto is easy to install.
###Linux and Mac OSX - almost automatically
You can install vimto quickly by downloading the install.sh
bash script,
reading it, and executing it. Piping shell scripts directly into sh
might be
tempting, but it's a security risk and you shouldn't be doing it.
$ wget https://raw.github.com/wridgers/vimto/master/tools/install.sh -O install.sh
$ vim install.sh # READ IT
$ chmod +x install.sh
$ ./install.sh
###Linux and Mac OSX - manually
This is pretty much all the above shell script does.
$ git clone https://github.com/wridgers/vimto ~/.vimto
$ cd ~/.vimto
$ git submodule init
$ git submodule sync
$ git submodule update --recursive
$ cp ~/.vimrc ~/.vimrc.backup
$ cp ~/.vimto/templates/vimrc.template ~/.vimrc
###Windows
Vimto works great on Windows too and the installation isn't much different, although there is no automatic script!
- Clone the repository to
$HOME/.vimto
using cmd.exe - git submodule init/sync/update
- Copy vimrc.template to
$HOME/_vimrc
Good to go.
##Bundled plugins
- airline
- autoclose
- coffeescript
- commandcaps
- commentary
- css3
- easyalign
- easymotion
- editorconfig
- fugitive
- gnupg
- golang
- hardmode
- html5
- jade
- javascript
- less
- localrc
- markdown
- nerdtree
- orgmode
- pathogen
- rooter
- scss
- startify
- supertab
- surround
- syntastic
- tagbar
- twig
- unite
- unite-tag
- vdebug
- vimproc
- vimshell
- ycm
##Bundled themes
##Custom plugins and themes
You want to use your own plugins and themes? No problem! vimto uses pathogen.
Simply clone the repo you want to ~/.vim/plugins
or ~/.vim/themes
and
you're ready.
##Documentation
Work in progress. For now, I recommend reading rc/11-mapping.vim
to
understand the basic keymappings that vimto introduces, and reading the docs
available for each plugin.
##Thanks
Special thanks to
- James Crockford for testing and the awesome logo
- James Fielder for testing
- Roshan Bhalla for testing