Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan committed Oct 26, 2010
0 parents commit 7752ed5
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README
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 added gvimrc
Empty file.
19 changes: 19 additions & 0 deletions vimrc
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 ; :

0 comments on commit 7752ed5

Please sign in to comment.