3
|
1 " markus schnalke -- http://marmaro.de
|
|
2 " meillo's vimrc
|
0
|
3
|
|
4
|
3
|
5 set nocompatible
|
0
|
6
|
3
|
7
|
|
8
|
0
|
9 set guifont=Terminus\ 9
|
|
10
|
|
11 "Scrollbar bottom
|
|
12 set guioptions+=b
|
|
13
|
3
|
14 "no cursor blinking
|
0
|
15 set guicursor+=a:blinkon0
|
|
16
|
|
17
|
|
18 set nocursorline
|
|
19
|
|
20 set expandtab
|
|
21 set shiftwidth=2
|
|
22 set softtabstop=2
|
|
23 set tabstop=2
|
|
24
|
|
25 syntax on
|
|
26
|
|
27 set number
|
|
28
|
|
29 set nowrap
|
|
30
|
|
31 set ic
|
|
32
|
|
33 set scrolloff=4 " min. number of lines above/below cursor
|
|
34
|
|
35 set nobackup
|
|
36 set viminfo+=%
|
|
37 set shortmess+=sI
|
|
38
|
|
39 "let php_sql_query = 1
|
|
40 "let php_htmlInStrings = 1
|
|
41
|
|
42 set foldenable "start with folding enabled
|
|
43 let php_folding=2 "foldable at all { and }
|
|
44 set foldmethod=syntax
|
|
45 set foldcolumn=4
|
|
46
|
|
47 set foldlevel=99 "to start with all folds open
|
|
48 set foldopen=""
|
|
49 set foldclose=""
|
|
50
|
|
51
|
|
52
|
|
53 set noerrorbells
|
|
54 "set visualbell
|
|
55
|
|
56
|
|
57 set sidescroll=1 " number of chars to scroll content right-left
|
|
58 set sidescrolloff=10 " number of chars to view between cursor and window-border
|
|
59
|
|
60 set winheight=10 " height of frame when it was smaller and gets focus
|
|
61 set winminheight=0 " height of frame when minimized
|
|
62
|
|
63
|
|
64 set whichwrap=""
|
|
65
|
|
66 set path=.,~/Prog
|
|
67
|
|
68
|
|
69 colorscheme meillo_self
|