-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jordan
committed
Oct 26, 2010
0 parents
commit 7752ed5
Showing
3 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Installation: | ||
|
||
<clone git repository> | ||
|
||
Create symlinks: | ||
|
||
ln -s ~/.vim/vimrc ~/.vimrc | ||
ln -s ~/.vim/gvimrc ~/.gvimrc | ||
|
||
Switch to the ~/.vim directory, and fetch submodules | ||
|
||
cd ~/.vim | ||
git submodule init | ||
git submodule update | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
set nocompatible | ||
|
||
set tabstop=3 "set tab character to 3 spaces | ||
set shiftwidth=3 "indent width for auto indent | ||
set softtabstop=3 | ||
set expandtab "turn tabs into whitespace | ||
set smarttab | ||
set autoindent | ||
set smartindent | ||
|
||
set number "show line number | ||
set nuw=5 "set line number formatting | ||
set cursorline | ||
|
||
set nowrap | ||
|
||
filetype plugin indent on | ||
|
||
nnoremap ; : |