From mboxrd@z Thu Jan 1 00:00:00 1970 To: 9fans@9fans.net Date: Mon, 17 Mar 2008 09:49:32 +0000 From: stefanha Message-ID: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit References: , <14ec7b180803131015r35399345v63ebf09a118ca2ec@mail.gmail.com> Subject: Re: [9fans] Announcing Vim for Plan 9 Topicbox-Message-UUID: 7a740b5c-ead3-11e9-9d60-3106f5b1d025 On Mar 13, 5:19 pm, mirtchov...@gmail.com (andrey mirtchovski) wrote: > so, is the color scheme fixed? can we get something resembling gvim's > "delek" color scheme (black letters on white background, light grey > selections)? that would make vim stand out against everything else > much less. The colors and background=dark are hardcoded at the moment. Since all graphics is being done inside Vim, I might hook :set background=light to change the background color to white and foreground to black. To tweak the source, look at src/os_plan9.c:init_colors. Try: cterm_normal_bg_color = 16; cterm_normal_fg_color = 1; Note that loading color schemes with :colo appears to crash (reported by fgb). I am fixing that right now. Stefan