dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone git://edryd.org/dotfiles
Log | Files | Refs

commit 58fb205e2f710d8aa6d5059f77d5965f8566e50b
parent 92053af665d0249007eb993774780af4ad9d6096
Author: Ed van Bruggen <edvb54@gmail.com>
Date:   Thu, 31 Jul 2014 14:22:23 -0700

Vim: Fix sourcing of vimrc.bundles file

Diffstat:
vimrc | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vimrc b/vimrc @@ -2,8 +2,8 @@ set nocompatible " make Vim not vi (see README for why) " plug-ins{{{1 " run separate bundles vimrc -if filereadable(expand("~/.vimrc.bundles")) - source ~/.vimrc.bundles +if filereadable(expand("~/dotfiles/vimrc.bundles")) + source ~/dotfiles/vimrc.bundles endif filetype plugin indent on