cartman / config

Collection of Config Files

This URL has Read+Write access

İsmail Dönmez (author)
Sun Oct 25 01:24:07 -0700 2009
commit  d45a4d0ffeb8108b5e7f18c03120b57fcc3fe19e
tree    587c8e270fb0270db687f4621bdfb358534bac10
parent  e265697848b05dc59151343fe17051b8bde1e36d
config / .vimrc
100644 42 lines (35 sloc) 0.644 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
38
39
40
41
42
set number
set nocompatible
set bs=2
set ai
set viminfo='20,\"50 " read/write a .viminfo file -- limit to only 50
set history=50 " keep 50 lines of command history
 
set nowrap
set ts=4
set sw=4
set sta
set sts=4
set et
 
set hlsearch
 
set modelines=0
 
" Don't use Ex mode, use Q for formatting
map Q gq
 
set wrap
set linebreak
set laststatus=2
set showcmd
set wildmenu
set incsearch
set background=dark
set paste
set guicursor+=a:blinkon0
set gfn=Droid\ Sans\ Mono\ 8
colorscheme slate
set guioptions-=m
set guioptions-=T
syntax on
set showtabline=2
set expandtab
 
:nmap <C-t> :tabnew<cr>
:imap <C-t> <ESC>:tabnew<cr>
:map <C-w> :tabclose<cr>