Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/caiofilipini/dotvim
vim configuration
https://github.com/caiofilipini/dotvim
Last synced: 3 months ago
JSON representation
vim configuration
- Host: GitHub
- URL: https://github.com/caiofilipini/dotvim
- Owner: caiofilipini
- Created: 2010-11-05T20:18:30.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2017-10-12T08:20:34.000Z (about 7 years ago)
- Last Synced: 2024-07-20T11:06:02.213Z (4 months ago)
- Language: Vim script
- Homepage:
- Size: 1.55 MB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This configuration is mainly used from a brew-installed command line `vim`, but it should work with any other vim distributions.
## Usage
To get it running on your machine, you first need to clone this repository:
```sh
git clone https://github.com/caiofilipini/dotvim.git ~/.vim
```Then create a symbolic link to `.vim/vimrc`, so it becomes your local configuration:
```sh
ln -s ~/.vim/vimrc ~/.vimrc
```I use Vundle to manage the plugins, so next step is getting it installed:
```sh
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
```Now, to install the plugins on your machine, you can run the following command (*NOTE*: because the plugins are not yet installed, you might see some errors on the command line; just press `ENTER` to ignore them and install the plugins):
```sh
vim +PluginInstall +qall
```You should be all set. Enjoy!