NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
use subversion! (Score:1)
# I'm with Andy on this. I use subversion to sync my vimrc between machines.
# Moreover, I've customized my
# so I can even sync between my Win32 laptop and my linux boxen
# E.g.
if has("win32")
let $VIMRC=expand("$VIM\\vimfiles\\vimrc")
let $DESK=expand("$HOME/../Desktop")
set backupdir=c:\\temp\\\\
set directory=c:\\temp\\\\
if argc() == 0
cd $HOME
endif
if has("gui_running")
set gfn=Bitstream_Vera_Sans_Mono:h11:cANSI
set co=80
set lines=45
endif
else
let $VIMRC=expand("~/.vimrc")
set backupdir=~/.vimbackups//
set directory=~/.vimswap//
if has("gui_running")
set gfn=Bitstream\ Vera\ Sans\ Mono\ 11
set co=80
set lines=45
endif
endif
Reply to This