dleve123 / dotfiles

my personal config files
1 stars 1 forks source link

Can't Load Vundle.vim #25

Open GolfyMcG opened 8 years ago

GolfyMcG commented 8 years ago

Hey Dan!

I'm trying to copy your style because you're mad fly and your dotfiles are causing me woes!

In particular, I'm receiving an error with respect to the RTP and Vundle.vim:

.vimrc

" Vim Plugin Management with Vundle
" ===== START =====
set rtp+=~/dotfiles/vim/bundle/Vundle.vim
call vundle#begin()

Error when opening Vim

Error detected while processing /Users/alexandervilla/.vimrc:
line    7:
E117: Unknown function: vundle#begin

However, when I install Vundle per their README at ~/.vim rather than trying to access it via ~/dotfiles

Execute per the Vundle README:

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

.vimrc changed to:

" Vim Plugin Management with Vundle
" ===== START =====
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

It works perfectly!

I feel like I'm missing something obvious...

GolfyMcG commented 8 years ago

Though it is seemingly unrelated, I thought I would add that Ctrl + L is not clearing my console either. I was able to get it to work by editing dotfiles/bashrc to include this:

bind -x $'"\C-l":clear;'

Might be a sign of a more systemic issue with my system?

GolfyMcG commented 8 years ago

Another potential guide to what I may have done wrong is that when starting vim for a yml file, I received an error like this. Upgrading to vim74 fixed it as suggested.