Add auto install of latest git
This commit is contained in:
parent
20fd41a89d
commit
b0b02c51b1
2 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue