https://github.com/zamicol/dotvim
Zamicol's vim configuration
https://github.com/zamicol/dotvim
Last synced: 4 months ago
JSON representation
Zamicol's vim configuration
- Host: GitHub
- URL: https://github.com/zamicol/dotvim
- Owner: zamicol
- Created: 2013-11-02T06:02:16.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2016-11-16T22:53:52.000Z (over 9 years ago)
- Last Synced: 2025-10-24T04:55:17.362Z (8 months ago)
- Language: VimL
- Size: 96.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Zamicol's Vim Configuration
============
A few things:
- jj to exit insert
- f4 for paste mode
- `;` is mapped to `:`
##Installation
####Step 1
Install vim, git
####Step 2
Choose one of the following three:
1. Install using git/ssh and initilize submodules
```sh
if [ ! -d "$HOME/.vim" ]; then (
cd ~/; git clone git://github.com/Zamicol/dotvim.git ~/.vim;
cd ~/.vim; git submodule init; git submodule update; ) fi
```
2. Install using https and initilize submodules
```sh
if [ ! -d "$HOME/.vim" ]; then (
cd ~/; git clone https://github.com/Zamicol/dotvim.git ~/.vim;
cd ~/.vim; git submodule init; git submodule update; ) fi
```
3. Installation without initilization of the submodules
```sh
git clone https://github.com/Zamicol/dotvim.git ~/.vim
```
####Step 3
Make a symbolic link to the vimrc file in your home directory.
````ln -s ~/.vim/vimrc ~/.vimrc````