Subversion Repositories programming

Rev

Rev 362 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
440 ira 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
362 ira 9
colorscheme candycode
440 ira 10
 
11
" Line numbering
160 ira 12
set number
440 ira 13
 
14
" Better Fonts
160 ira 15
set guifont=Bitstream\ Vera\ Sans\ Mono\ 12
16
set guifontwide=Bitstream\ Vera\ Sans\ Mono\ 12
440 ira 17
 
18
" Good (Linux kernel style) tabbing options
19
"set tabstop=4 softtabstop=4 shiftwidth=4 expandtab
362 ira 20
set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab
440 ira 21
 
22
" Make tab chars visible
160 ira 23
set list
24
set listchars=tab:>.
440 ira 25
 
26
" I LOVE UTF-8
160 ira 27
set encoding=utf-8
440 ira 28
 
29
" Make gvim bigger by default
30
set columns=112 lines=36
31
 
32
" Turn on better indenting
160 ira 33
set noautoindent
34
set cindent
440 ira 35