Merge from default mhoward-lt

Sat, 19 Jul 2014 04:41:34 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Sat, 19 Jul 2014 04:41:34 -0400
branch
mhoward-lt
changeset 117
10e0152bacce
parent 113
6fb9403f0c80 (current diff)
parent 116
5941d66ecc4b (diff)
child 119
c25420419c0b

Merge from default

.Xdefaults file | annotate | diff | comparison | revisions
--- a/.Xdefaults
+++ b/.Xdefaults
@@ -1,5 +1,5 @@
 
-URxvt.foreground: white
+URxvt.foreground: #DFDFDF
 URxvt.background: #070707
 URxvt.font: xft:monospace-10
 
--- a/.vimrc
+++ b/.vimrc
@@ -21,7 +21,8 @@ end
 
   if !filereadable(vundle_readme)
     if !executable('git')
-      echo "You probably want git installed and in PATH"
+      echo "You probably want git installed and in PATH."
+      echo " http://chocolatey.org "
       quit
     endif
 
@@ -68,6 +69,7 @@ end
 
   Plugin 'Shougo/neocomplcache.vim'
   Plugin 'c9s/perlomni.vim'
+  Plugin 'rking/ag.vim'
 
   Plugin 'tpope/vim-fugitive'
   Plugin 'ludovicchabant/vim-lawrencium'
@@ -77,6 +79,7 @@ end
   Plugin 'vim-ruby/vim-ruby'
   Plugin 'vim-perl/vim-perl'
 
+
   if installed_vundle == 1
     echo "Installing Plugins, please ignore key map error messages"
     echo ""
@@ -165,6 +168,9 @@ else
     set wildignore+=.git\*,.hg\*,.svn\*
 endif
 
+" Enable enhanced % matching in ruby
+runtime macros/matchit.vim
+
 " Don't assume to scan includes when autocompleting
 set cpt-=i
 
@@ -279,7 +285,10 @@ endif
 
 ">> Tagbar
 if on_windows == 1
-  let g:tagbar_ctags_bin = 'C:\Users\mhoward\bin\ctags.exe'
+  if executable('ctags') == 0
+    " if i haven't installed from chocolatey...
+    let g:tagbar_ctags_bin = 'C:\Users\mhoward\bin\ctags.exe'
+  endif
 endif
 
 let g:tagbar_autoclose = 1

mercurial