https://github.com/renanivo/dotvim
My vim configurations
https://github.com/renanivo/dotvim
vim-configuration vimrc
Last synced: 4 months ago
JSON representation
My vim configurations
- Host: GitHub
- URL: https://github.com/renanivo/dotvim
- Owner: renanivo
- Created: 2011-09-20T19:31:51.000Z (almost 14 years ago)
- Default Branch: main
- Last Pushed: 2024-11-18T14:08:26.000Z (7 months ago)
- Last Synced: 2025-01-11T01:28:16.028Z (6 months ago)
- Topics: vim-configuration, vimrc
- Language: Vim Script
- Homepage:
- Size: 1.22 MB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
dotVIM
======My vim configurations

Install
-------git clone git://github.com/renanivo/dotvim.git ~/.vim
cd ~/.vim
make### Dependencies
* [Ruby](https://rubygems.org/)
* [NPM](https://www.npmjs.org/)* `ack` command line tool
install on Ubuntu
```bash
sudo apt-get install ack-grep
```install on OSX
```bash
brew install ack
```[read more](https://github.com/mileszs/ack.vim#readme)
### Known Issues
Ack.vim plugin looks for the command *ack*. In Ubuntu this command is known as *ack-grep*. In order to make it work on Ubuntu, you have to execute:
```bash
make ubuntu
```You can don it manually adding the following line to your `.vimrc`
```vim
source ~/.vim/vimrc
let g:ackprg="ack-grep -H --nocolor --nogroup --column"
```Updates
-------make update
Installed Plugins
-----------------Look at [vimrc](vimrc)