[pisa-src] r2566 - in trunk: . .vimrc

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Tue, 03 May 2011 14:47:56 +0200

Author: biurrun
Date: Tue May  3 14:47:56 2011
New Revision: 2566

Log:
vimrc: Read in the contents of a separate local customization file.

This allows people to specify extra per-project settings or even override
the settings from the PISA .vimrc - for whatever reason.

Modified:
   trunk/   (props changed)
   trunk/.vimrc

Modified: trunk/.vimrc
==============================================================================
--- trunk/.vimrc        Tue May  3 14:30:28 2011        (r2565)
+++ trunk/.vimrc        Tue May  3 14:47:56 2011        (r2566)
@@ -7,3 +7,7 @@
 
 " trailing whitespace is forbidden, so highlight it
 let c_space_errors = 1
+
+if filereadable(".vimrc_custom")
+    source .vimrc_custom
+endif
-- 
This is the pisa developer mailing list. Please also subscribe to the main pisa 
list at:
//www.freelists.org/list/pisa

Other related posts:

  • » [pisa-src] r2566 - in trunk: . .vimrc - Diego Biurrun