carlo / homedir forked from bradleywright/homedir

Public home directory files

This URL has Read+Write access

homedir / .vimrc
100644 37 lines (31 sloc) 0.52 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
set nocompatible
set ls=2
set showmode
set tabstop=4
set shiftwidth=4
set expandtab
set softtabstop=4
if has('mouse')
    set mouse=a
endif
set nomodeline
set showmatch
set title
set cindent
set number
set autoindent
set nosmartindent
 
" i18n friendly
set fileencoding=utf-8
 
if has('syntax')
    syntax on
    colorscheme desert
endif
 
if has('cmdline_info')
    set ruler
    set rulerformat=%30(%=\:b%n%y%m%r%w\ %l,%c%V\ %P%)
    set showcmd
endif
 
filetype on
 
set whichwrap=h,l,~,[,]
set backspace=eol,start,indent