adamwiggins (owner)

Revisions

gist: 110856 Download_button fork
public
Public Clone URL: git://gist.github.com/110856.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
syntax on
set ts=3 sw=3 si
set hlsearch
 
set backspace=indent,eol,start
 
command Rubytabs set tabstop=2 smarttab shiftwidth=2 autoindent expandtab backspace=start,indent
 
command Regtabs set ts=3 sw=3 noexpandtab
 
" save last position in file
autocmd BufReadPost *
\ if line("'\"") > 0 && line("'\"") <= line("$") |
\ exe "normal g`\"" |
\ endif