annotate .vimrc @ 7:9d451b6d3647

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