From 7a35dd68a992fcd4d5e6c6efbc6506a32f47f43c Mon Sep 17 00:00:00 2001 From: Max Bucknell Date: Sun, 3 May 2015 23:23:22 +0100 Subject: [PATCH] Add latex package for vim. --- script/bootstrap.sh | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/script/bootstrap.sh b/script/bootstrap.sh index f0b57e8..d7f872f 100755 --- a/script/bootstrap.sh +++ b/script/bootstrap.sh @@ -117,7 +117,17 @@ install_dotfiles () { install_vim_plugins () { info "installing vim plugins" - local PLUGINS=("thoughtbot/pick.vim" "tomtom/tlib_vim" "mxw/vim-jsx" "wting/rust.vim" "marcweber/vim-addon-mw-utils" "scrooloose/syntastic" "mustache/vim-mustache-handlebars" "pangloss/vim-javascript") + local PLUGINS=( + "thoughtbot/pick.vim" + "tomtom/tlib_vim" + "mxw/vim-jsx" + "wting/rust.vim" + "marcweber/vim-addon-mw-utils" + "scrooloose/syntastic" + "mustache/vim-mustache-handlebars" + "pangloss/vim-javascript" + "lervag/vimtex" + ) local BASE_DIR="$DOTFILES_ROOT/vim/vim.symlink/bundle" local GIT_HOST="git@github.com"