Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arangamani/vimrc
My vimrc
https://github.com/arangamani/vimrc
Last synced: about 2 months ago
JSON representation
My vimrc
- Host: GitHub
- URL: https://github.com/arangamani/vimrc
- Owner: arangamani
- Created: 2014-07-06T10:36:34.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-11T22:43:44.000Z (over 8 years ago)
- Last Synced: 2023-04-10T13:11:17.000Z (over 1 year ago)
- Language: VimL
- Size: 3.21 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Arangamani's vimrc
## Installation
### cURL
```bash
curl https://raw.githubusercontent.com/arangamani/vimrc/master/setup.sh | bash
```### Manual
```bash
# Clone the vimrc repository to ~/.vim
git clone git://github.com/arangamani/vimrc ~/.vim# Install vundle first
mkdir -p $HOME/.vim/bundle
git clone http://github.com/gmarik/vundle.git $HOME/.vim/bundle/vundle# Install all other bundles using vundle installer
vim -u $HOME/.vim/startup/bundles.vim +BundleInstall! +BundleClean +qall# Link the vimrc
ln -s ~/.vim/vimrc ~/.vimrc
```