This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: [ANNOUNCEMENT] Updated: vim-6.0.11-1


On Tue, Oct 16, 2001 at 11:02:27AM -0400, Scott Brim wrote:
> On Tue, Oct 16, 2001 04:54:12PM +0200, Corinna Vinschen allegedly wrote:
> > On Tue, Oct 16, 2001 at 09:36:19AM -0400, Scott Brim wrote:
> > > On Tue, Oct 16, 2001 06:46:02AM -0400, Corinna Vinschen allegedly wrote:
> > > > I've updated the version of VIM in cygwin/latest to 6.0.11-1.
> > > 
> > > Thanks.  I'm still having problems with initialization time.  vim-5.8-9
> > > startup time is barely noticeable, but all of the 6.0 versions take at
> > > least a second.
> > 
> > I don't have that problem.  6.0.11 is nearly as fast on startup as 5.8.9.
> 
> Would you send me your .vimrc?  I'm looking for any clues.

Look for //<letter> paths in $PATH and such stuff.

My .vimrc is attached.

Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Developer                                mailto:cygwin@cygwin.com
Red Hat, Inc.
behave xterm

set   autowrite
set   autoindent
set   background=light
set nobackup
set   cmdheight=1
set nocompatible
set   backupdir=~/tmp,.
set   directory=~/tmp,.
set noexpandtab
set   hlsearch
set   ignorecase
set   report=2
set   ruler
set   shiftwidth=2
set   showmode
set   smartcase
set   tabstop=8
set   tags=./tags,../tags
set notildeop
set notitle

set t_ti=7[?47h t_te=[?47l8

syntax on

" Mapping der Funktionstasten für Linux-Terminal, VT-Terminal und WinNT-Console
map [11~ <F1>
map [12~ <F2>
map [13~ <F3>
map [14~ <F4>
map [15~ <F5>
map [17~ <F6>
map [18~ <F7>
map [19~ <F8>
map [20~ <F9>
map [21~ <F10>
map [23~ <F11>
map [24~ <F12>

" Buffer-Funktionen auf F1-F4
map <F1>   :buffers<CR>
map <F2>   :bp<CR>
map <S-F2> :sbp<CR>
map <F3>   :bn<CR>
map <S-F3> :sbn<CR>
map <F4>   :bd<CR>

" Tag-Suche mit Auswahl bei Nichteindeutigkeit auf '+'
map + g
map = g

" Function header immer in Fenstermitte nach [[ und ]]
map [[ [[z.
map ]] ]]z.

if has("gui_running")
  " Nur für GVIM
  "set   columns=90
  set   backupdir=~/tmp,.
  set   directory=~/tmp,.
  "set   guifont=Lucida_Console:h9
  set   guioptions=agimrtb
  set   lines=50
  "set   makeprg=nmake
  set   mousehide
  "set   shell=D:/Programme/vim55/shell.bat
  "set   shellcmdflag=-c
  "set   shellquote=\"
  "set   tabstop=4
  "set nowrap

  highlight Normal guifg=Black guibg=#ffffe6 " #d0d0d0 " #ffffe6
  highlight Cursor guibg=Black guifg=NONE

  "autocmd GUIEnter * winpos 17 8

endif

" Meine eigenen Farben
if version >= 600
  if &background != "dark"
    hi Comment	term=bold cterm=NONE ctermfg=DarkGreen ctermbg=NONE gui=NONE guifg=DarkGreen guibg=NONE
    hi Constant	term=underline cterm=NONE ctermfg=DarkRed ctermbg=NONE gui=NONE guifg=Red guibg=NONE
    hi Special	term=bold cterm=NONE ctermfg=DarkRed ctermbg=NONE gui=NONE guifg=Red guibg=NONE
    hi Identifier	term=underline cterm=NONE ctermfg=Black ctermbg=NONE gui=NONE guifg=Black guibg=NONE
    hi Statement	term=bold cterm=NONE ctermfg=DarkBlue ctermbg=NONE gui=bold guifg=Blue guibg=NONE
    hi PreProc	term=underline cterm=NONE ctermfg=DarkBlue ctermbg=NONE gui=NONE guifg=DarkBlue guibg=NONE
    hi Type		term=underline cterm=NONE ctermfg=DarkBlue ctermbg=NONE gui=bold guifg=Blue guibg=NONE
    hi Ignore	term=NONE cterm=NONE ctermfg=white ctermbg=NONE gui=NONE guifg=bg guibg=NONE
  endif
endif

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]