Add vundle support for vim
This commit is contained in:
parent
b7b152248c
commit
dc7ff7b1e6
@ -10,6 +10,8 @@ EXTRA_DIR="$HOME/.extra"
|
|||||||
|
|
||||||
#vim backup folders
|
#vim backup folders
|
||||||
mkdir -p ~/.vim/{backup_files,swap_files,undo_files}
|
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
|
# Bunch of symlinks
|
||||||
#ln -sfv "$DOTFILES_DIR/run/.bash_profile" ~
|
#ln -sfv "$DOTFILES_DIR/run/.bash_profile" ~
|
||||||
|
@ -1,4 +1,16 @@
|
|||||||
set nocompatible " get rid of Vi compatibility mode. SET FIRST!
|
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/{}')
|
"execute pathogen#infect('bundle/{}')
|
||||||
filetype plugin indent on " filetype detection[ON] plugin[ON] indent[ON]
|
filetype plugin indent on " filetype detection[ON] plugin[ON] indent[ON]
|
||||||
set t_Co=256 " enable 256-color mode.
|
set t_Co=256 " enable 256-color mode.
|
||||||
|
Loading…
Reference in New Issue
Block a user