annotate .vimrc @ 1:41e1e617711d

added more files
author meillo@marmaro.de
date Sat, 14 Apr 2007 13:08:01 +0200
parents a5f356e3bebc
children ed27560e11be
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
1 set nocompatible
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
2 "source $VIMRUNTIME/vimrc_example.vim
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
3 "source $VIMRUNTIME/mswin.vim
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
4 "behave mswin
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
5 "
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
6
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
7
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
8 "set columns=150 lines=50
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
9 "maximiert starten
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
10 "au GUIEnter * simalt ~x
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
11
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
12 "set guifont=Courier_New:h8:cANSI
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
13 set guifont=Terminus\ 9
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
14
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
15 "Scrollbar bottom
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
16 set guioptions+=b
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
17
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
18 "Cursorblinken abstellen
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
19 set guicursor+=a:blinkon0
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
20
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
21
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
22 set nocursorline
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
23
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
24 set expandtab
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
25 set shiftwidth=2
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
26 set softtabstop=2
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
27 set tabstop=2
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
28
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
29 syntax on
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
30
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
31 set number
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
32
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
33 set nowrap
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
34
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
35 set ic
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
36
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
37 set scrolloff=4 " min. number of lines above/below cursor
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
38
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
39 set nobackup
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
40 set viminfo+=%
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
41 set shortmess+=sI
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
42
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
43 "let php_sql_query = 1
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
44 "let php_htmlInStrings = 1
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
45
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
46 set foldenable "start with folding enabled
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
47 let php_folding=2 "foldable at all { and }
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
48 set foldmethod=syntax
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
49 set foldcolumn=4
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
50
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
51 set foldlevel=99 "to start with all folds open
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
52 set foldopen=""
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
53 set foldclose=""
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
54
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
55
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
56
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
57 set noerrorbells
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
58 "set visualbell
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
59
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
60
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
61 set sidescroll=1 " number of chars to scroll content right-left
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
62 set sidescrolloff=10 " number of chars to view between cursor and window-border
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
63
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
64 set winheight=10 " height of frame when it was smaller and gets focus
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
65 set winminheight=0 " height of frame when minimized
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
66
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
67
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
68 set whichwrap=""
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
69
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
70 set path=.,~/Prog
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
71
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
72 "cd z:/maka/eis
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
73
a5f356e3bebc inital checkin
meillo@marmaro.de
parents:
diff changeset
74 colorscheme meillo_self