diff --git a/install.sh b/install.sh index db1d95a..70228ec 100644 --- a/install.sh +++ b/install.sh @@ -10,6 +10,8 @@ EXTRA_DIR="$HOME/.extra" #vim backup folders mkdir -p ~/.vim/{backup_files,swap_files,undo_files} +#install vundle +git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim # Bunch of symlinks #ln -sfv "$DOTFILES_DIR/run/.bash_profile" ~ diff --git a/system/.vimrc b/system/.vimrc index 2a0b4e6..3c59331 100644 --- a/system/.vimrc +++ b/system/.vimrc @@ -1,4 +1,16 @@ set nocompatible " get rid of Vi compatibility mode. SET FIRST! +filetype off +" set the runtime path to include vundle +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() + +" let Vundle manage Vundle +Plugin 'VundleVim/Vundle.vim' +Plugin 'pearofducks/ansible-vim' + +" All Vundle Plugins go above here +call vundle#end() + "execute pathogen#infect('bundle/{}') filetype plugin indent on " filetype detection[ON] plugin[ON] indent[ON] set t_Co=256 " enable 256-color mode.