Add auto install of latest git

This commit is contained in:
Nicole Tietz-Sokolskaya 2020-01-13 14:07:04 -05:00
parent 20fd41a89d
commit b0b02c51b1
2 changed files with 8 additions and 0 deletions

View file

@ -109,6 +109,12 @@ function install_wtfutil() {
cp ./wdir/wtfutil ~/.bin/
}
function install_git_latest() {
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt install git
}
#install_utilities # TODO
install_docker
install_docker_compose
@ -117,4 +123,5 @@ install_google_cloud_sdk
install_pyenv
install_ctags
install_wtfutil
install_git_latest

View file

@ -64,5 +64,6 @@ nmap <F8> :TagbarToggle<CR>
" Turn off polyglot for go so they play nice
if exists('g:loaded_polyglot')
let g:polyglot_disabled = ['go']
let g:polyglot_disabled = ['rst']
endif