Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Ok, I've been searching for a while and just can't seem to find the answer, so I'm hoping someone can point me straight here...

I have (g)Vim 7.3 for windows installed and am trying to run it from the powershell prompt (v2.0/Win 7-amd64). Vim starts fine, but the colors are all jacked. Normally I use the desert theme for gVim. For POSIX shells I usually use CSApprox.vim plugin to get the gVim colors in vim and it works great (all i have set in the .vimrc is the set t_Co=256 for it). Anyway, I've tried vim with and with out the 256 and CSApprox plugin, but still get the wrong colors when launched from powershell (and cmd, but lets stick with powershell for simplicity here). How can I get powershell vim to look like gVim desert without permanately changing the powershell colors outside of Vim?

share|improve this question
i'm having the exact same problem – justin cress Nov 30 '11 at 15:13

3 Answers

You could try: $Host.UI.RawUI.BackgroundColor = 'black' before launching vim…

share|improve this answer
How does that fix anything? – manojlds Nov 9 '11 at 17:47

Have you added the line colorscheme desert to your _vimrc? It sets the gvim color when called from powershell or cmd for me. The only issue I had when adding it was finding the "right" _vimrc but running the :set runtimepath? in vim took care of that.

share|improve this answer
yes, I only have one _vimrc file in the main directory of Vim (none in my profile). It is read by gVim. Running :set runtimepath shows the program files vim73 dir, as expected and that is where my _vimrc file is. Is there another or something else to be aware of or look at? – John S. Nov 14 '11 at 21:23
The only other thing I can think of is to start gvim then at the menu click Edit -> Startup Settings. It will open the _vimrc it read at startup. Make sure that "colorscheme desert" is there and look for anything else that could change/override it. If that doesn't help I'm out of ideas other than just sending you my _vimrc to compare/test. – Bruce Nov 15 '11 at 14:04
up vote 0 down vote accepted

This does not appear to be possible.

share|improve this answer
Find any decent alternatives? Just wondering what might be bearable under powershell... – Z J Rollyson Mar 26 at 1:39
1  
Unfortunately not. I ended up just staying with Cygwin as I was able to achieve 99% of my tasks there anyway. – John S. Mar 27 at 15:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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