https://github.com/rajasegar/vimrc
My vimrc config
https://github.com/rajasegar/vimrc
dotfiles vim vimrc
Last synced: about 2 months ago
JSON representation
My vimrc config
- Host: GitHub
- URL: https://github.com/rajasegar/vimrc
- Owner: rajasegar
- Created: 2018-10-02T07:24:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-25T00:52:05.000Z (almost 7 years ago)
- Last Synced: 2025-04-03T13:23:51.726Z (about 1 year ago)
- Topics: dotfiles, vim, vimrc
- Language: Vim script
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# My vimrc file
## Step 1: Install Vundle for vim
https://github.com/VundleVim/Vundle.vim
```shell
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
```
## Step 2: Start Vim and do :PluginInstall
This will install all the plugins listed in `.vimrc`.
Some plugins may not be installed due to vim version mismatches like `Ale` requires a higher vim version
```shell
:PluginInstall
```
## Step 3: Install the required tools
### fzf
https://github.com/junegunn/fzf.vim
For MacOS:
```shell
brew install fzf
```
### ag
https://github.com/ggreer/the_silver_searcher
For MacOS:
```shell
brew install the_silver_searcher
```
For Linux:
```shell
sudo apt-get install silversearcher-ag
```