Rev 362 | Blame | Compare with Previous | Last modification | View Log | RSS feed
" My Graphical Vim settings
"
" Last modified: 2007-10-25
" Turn on modelines, since gentoo turns them off
set modeline
" Good Colorscheme for Gvim
colorscheme candycode
" Line numbering
set number
" Better Fonts
set guifont=Bitstream\ Vera\ Sans\ Mono\ 12
set guifontwide=Bitstream\ Vera\ Sans\ Mono\ 12
" Good (Linux kernel style) tabbing options
"set tabstop=4 softtabstop=4 shiftwidth=4 expandtab
set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab
" Make tab chars visible
set list
set listchars=tab:>.
" I LOVE UTF-8
set encoding=utf-8
" Make gvim bigger by default
set columns=112 lines=36
" Turn on better indenting
set noautoindent
set cindent