/etc/skel/.vimrc: support ~/.vimrc.local
authorMichael Prokop <mika@grml.org>
Fri, 29 Jun 2007 23:20:38 +0000 (01:20 +0200)
committerMichael Prokop <mika@grml.org>
Fri, 29 Jun 2007 23:20:38 +0000 (01:20 +0200)
debian/changelog
etc/skel/.vimrc

index 002be86..0af1f95 100644 (file)
@@ -15,6 +15,7 @@ grml-etc-core (0.3.12) unstable; urgency=low
       cmdline, thanks again ft!
     - added keywords/strings for automatic building of grml' zsh
       reference card [and once more thanks to ft! :)]
+  * /etc/skel/.vimrc: support ~/.vimrc.local
 
  -- Michael Prokop <mika@grml.org>  Sun, 10 Jun 2007 00:04:08 +0200
 
index cd83d23..d285ce6 100644 (file)
@@ -3,7 +3,7 @@
 " Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
 " Bug-Reports:   see http://grml.org/bugs/
 " License:       This file is licensed under the GPL v2.
-" Latest change: Son Apr 01 19:33:19 CEST 2007 [mika]
+" Latest change: Sam Jun 30 01:19:56 CEST 2007 [mika]
 "###############################################################################
 " Thanks to Sven Guckes for his template!
 "###############################################################################
@@ -148,5 +148,10 @@ 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 #################################################################