diff options
-rw-r--r-- | .bashrc | 4 | ||||
-rw-r--r-- | .zshrc | 4 | ||||
-rw-r--r-- | install.sh | 2 |
3 files changed, 2 insertions, 8 deletions
@@ -137,9 +137,5 @@ if [ ! -d /usr/share/autojump ]; then fi . /usr/share/autojump/autojump.sh -# proxy -export http_proxy='http://localhost:7890' -export https_proxy='http://localhost:7890' - # fzf [ -f ~/.fzf.bash ] && source ~/.fzf.bash @@ -17,10 +17,6 @@ if [ ! -d /usr/share/autojump ]; then fi . /usr/share/autojump/autojump.zsh -# proxy -export http_proxy='http://127.0.0.1:7890' -export https_proxy='http://127.0.0.1:7890' - # zplug if [ ! -d ~/.zplug ]; then echo 'Installing zplug ... ' @@ -19,6 +19,8 @@ usage() { base_install() { echo "--------- Install Base Packages Now ---------" if command -v apt > /dev/null; then + apt update + apt upgrade apt install git \ curl \ cmake \ |