Skip to content

Commit 5e17349

Browse files
Thijs de VriesThijs de Vries
Thijs de Vries
authored and
Thijs de Vries
committed
changing vimrc
1 parent c718916 commit 5e17349

File tree

4 files changed

+15
-16
lines changed

4 files changed

+15
-16
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.netrwhist

.gvimrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
colorscheme railscasts

.netrwhist

-6
This file was deleted.

.vimrc

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
call pathogen#infect()
2+
set nocompatible
23
syntax on
4+
set encoding=utf-8
5+
set showcmd
36
filetype plugin indent on
47

5-
set grepprg=ack
6-
set number
7-
set listchars=tab:▸\ ,eol
8-
set gfn=Monaco:h12
9-
colorscheme railscasts
10-
8+
"Set Whitespace"
9+
set nowrap
10+
set tabstop=2 shiftwidth=2
1111
set expandtab
12-
set shiftwidth=2
13-
set tabstop=2
14-
autocmd FileType ruby set expandtab|set shiftwidth=2|set tabstop=2
15-
autocmd FileType java set expandtab|set shiftwidth=4|set tabstop=4
12+
set backspace=indent,eol,start
1613

14+
"Set Search Settings"
15+
set hlsearch
16+
set incsearch
17+
set ignorecase
18+
set smartcase
1719

20+
"Set Style"

0 commit comments

Comments
 (0)