add Vundle and a couple plugins

This commit is contained in:
Josh Holtrop 2017-04-13 15:13:49 -04:00
parent 24e80a650a
commit 19be2bc956
4 changed files with 20 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
undo/* undo/*
.netrwhist .netrwhist
/bundle

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "Vundle.vim"]
path = Vundle.vim
url = git://github.com/VundleVim/Vundle.vim.git

1
Vundle.vim Submodule

@ -0,0 +1 @@
Subproject commit 6497e37694cd2134ccc3e2526818447ee8f20f92

15
vimrc
View File

@ -3,6 +3,21 @@
"============================================================================== "==============================================================================
let $MYVIMFILES=fnamemodify(resolve(expand("<sfile>")), ":p:h") let $MYVIMFILES=fnamemodify(resolve(expand("<sfile>")), ":p:h")
set nocompatible set nocompatible
"""
""" Load Vundle
"""
filetype off
set rtp+=~/.vim/Vundle.vim
call vundle#begin()
Plugin 'git://github.com/rust-lang/rust.vim.git'
Plugin 'git://github.com/cespare/vim-toml.git'
call vundle#end()
"""
syntax enable syntax enable
filetype plugin indent on filetype plugin indent on
set backspace=indent,eol,start set backspace=indent,eol,start