Is there a way to have two separate config files or somehow disassociate vi and vim on Mac OSX? Simply, I want vi and vim to open up in 2 different window sizes. Thanks!

link|improve this question

20% accept rate
1  
Who uses plain old vi anymore? – Ether Sep 13 '10 at 21:35
feedback

2 Answers

Use the v:progname variable:

if v:progname == 'vi'
    " vi-compatible settings
else
    " full vim settings
endif
link|improve this answer
feedback

Should be as simple as using .virc and .vimrc as appropriate.

link|improve this answer
I thought so too, but that doesn't seem to work. Doesn't seem to use that config file. – james Sep 13 '10 at 21:49
1  
alias vi to be vi -c ~/.virc or whatever it is to source the right file. On OSX, I suspect that 'vi' is simply a symlink to vim. – dash-tom-bang Sep 13 '10 at 22:26
@dash-tom-bang: Indeed! $ vi --version --> VIM - Vi IMproved 7.2 (2008 Aug 9, compiled Jan 31 2010 13:33:49) – rfunduk Sep 14 '10 at 12:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.