Fix vim on Mac
This commit is contained in:
parent
2a13b0ef23
commit
f4a33c1862
2 changed files with 6 additions and 2 deletions
1
common/install_vim_from_sources.sh
Normal file → Executable file
1
common/install_vim_from_sources.sh
Normal file → Executable file
|
@ -26,7 +26,6 @@ if [[ -z $NO_COMPILE_VIM ]]; then
|
|||
--enable-multibyte \
|
||||
--enable-rubyinterp \
|
||||
--enable-python3interp=yes \
|
||||
--enable-pythoninterp=yes \
|
||||
--enable-luainterp \
|
||||
--enable-gui=no \
|
||||
--enable-cscope
|
||||
|
|
|
@ -20,7 +20,6 @@ brew install --force gnupg2
|
|||
brew update
|
||||
brew upgrade
|
||||
|
||||
brew install vim
|
||||
brew install aria2
|
||||
brew install \
|
||||
autojump \
|
||||
|
@ -86,7 +85,13 @@ fi
|
|||
brew linkapps
|
||||
brew cleanup
|
||||
brew prune
|
||||
set +e
|
||||
mv "$HOME/.cargo/bin/cargo-install-update-config" "$HOME/.cargo/bin/cargo-install-update-cfg"
|
||||
set -e
|
||||
brew doctor
|
||||
set +e
|
||||
mv "$HOME/.cargo/bin/cargo-install-update-cfg" "$HOME/.cargo/bin/cargo-install-update-config"
|
||||
set -e
|
||||
|
||||
echo "Configuring NVRAM"
|
||||
sudo nvram SystemAudioVolume=%80
|
||||
|
|
Loading…
Reference in a new issue