Subversion Repositories programming

Rev

Rev 362 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 362 Rev 440
Line -... Line 1...
-
 
1
" My Graphical Vim settings
-
 
2
"
-
 
3
" Last modified: 2007-10-25
-
 
4
 
-
 
5
" Turn on modelines, since gentoo turns them off
-
 
6
set modeline
-
 
7
 
-
 
8
" Good Colorscheme for Gvim
1
colorscheme candycode
9
colorscheme candycode
-
 
10
 
-
 
11
" Line numbering
2
set number
12
set number
-
 
13
 
-
 
14
" Better Fonts
3
set guifont=Bitstream\ Vera\ Sans\ Mono\ 12
15
set guifont=Bitstream\ Vera\ Sans\ Mono\ 12
4
set guifontwide=Bitstream\ Vera\ Sans\ Mono\ 12
16
set guifontwide=Bitstream\ Vera\ Sans\ Mono\ 12
-
 
17
 
5
set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab
18
" Good (Linux kernel style) tabbing options
6
"set tabstop=4 softtabstop=4 shiftwidth=4 expandtab
19
"set tabstop=4 softtabstop=4 shiftwidth=4 expandtab
-
 
20
set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab
-
 
21
 
-
 
22
" Make tab chars visible
7
set list
23
set list
8
set listchars=tab:>.
24
set listchars=tab:>.
-
 
25
 
-
 
26
" I LOVE UTF-8
9
set encoding=utf-8
27
set encoding=utf-8
-
 
28
 
-
 
29
" Make gvim bigger by default
10
set columns=110 lines=36
30
set columns=112 lines=36
-
 
31
 
-
 
32
" Turn on better indenting
11
set noautoindent
33
set noautoindent
12
set cindent
34
set cindent
-
 
35