X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fskel%2F.vimrc;h=62485df5368322a942c3ab86926267f0d031702e;hb=refs%2Ftags%2F0.3.57;hp=d285ce63eecba0aaca2a24c9ed3708729edbabd3;hpb=6021c75f47b79bb046f83bcef70623d7fd37355b;p=grml-etc-core.git diff --git a/etc/skel/.vimrc b/etc/skel/.vimrc index d285ce6..62485df 100644 --- a/etc/skel/.vimrc +++ b/etc/skel/.vimrc @@ -3,7 +3,7 @@ " Authors: grml-team (grml.org), (c) Michael Prokop " Bug-Reports: see http://grml.org/bugs/ " License: This file is licensed under the GPL v2. -" Latest change: Sam Jun 30 01:19:56 CEST 2007 [mika] +" Latest change: Don Jul 19 00:02:50 CEST 2007 [mika] "############################################################################### " Thanks to Sven Guckes for his template! "############################################################################### @@ -12,6 +12,7 @@ set nocp " turn these ON: set digraph ek hidden ruler sc vb wmnu +" set digraph " turn these OFF ("no" prefix): set noeb noet nosol " non-toggles: @@ -80,6 +81,11 @@ source /usr/share/doc/mercurial/examples/vim/hg-menu.vim endif +" source local configuration file + if filereadable(expand("$HOME/.vimrc.local")) + source $HOME/.vimrc.local + endif + " Vim 7 brings cool new features - see ':he version7'! " The coolest features of Vim7 by mika " ==================================== @@ -148,10 +154,5 @@ if version >= 700 " highlight PmenuSbar ctermbg=7 guifg=#CCCCCC guibg=#CCCCCC " scrollbar " highlight PmenuThumb cterm=reverse gui=reverse guifg=Black guibg=#AAAAAA " thumb of the scrollbar - " source local configuration file - if filereadable("~/.vimrc.local") - source ~/.vimrc.local - endif - endif "# END OF FILE #################################################################