Compare commits

..

No commits in common. '21c9cf71503667d77d7863f93195de7800dcbcb6' and 'e94467d3e79d18df7329e63c72d1baafdefae170' have entirely different histories.

  1. 1
      .vim/startup/vundle_vimrc
  2. 1
      Brewfile
  3. 4
      zsh/alias.zsh

1
.vim/startup/vundle_vimrc

@ -74,7 +74,6 @@ Plug 'Valloric/YouCompleteMe', { 'do': 'python3 install.py --all' }
Plug 'nathangrigg/vim-beancount' Plug 'nathangrigg/vim-beancount'
Plug 'hashivim/vim-terraform' Plug 'hashivim/vim-terraform'
Plug 'wakatime/vim-wakatime' Plug 'wakatime/vim-wakatime'
Plug 'editorconfig/editorconfig-vim'
" Git plugin not hosted on GitHub " Git plugin not hosted on GitHub
Plug 'git://git.wincent.com/command-t.git' Plug 'git://git.wincent.com/command-t.git'

1
Brewfile

@ -31,7 +31,6 @@ brew "wget"
brew "rsync" brew "rsync"
# tools # tools
brew "ipinfo-cli"
brew "youtube-dl" brew "youtube-dl"
brew "ffmpeg" brew "ffmpeg"
brew "imagemagick" brew "imagemagick"

4
zsh/alias.zsh

@ -21,8 +21,8 @@ alias mvn-purge="mvn dependency:purge-local-repository"
# https://stackoverflow.com/a/15503178/1820217 # https://stackoverflow.com/a/15503178/1820217
alias gitlog="git ls-files -z | xargs -0n1 git blame -w --show-email | perl -n -e '/^.*?\((.*?)\s+[\d]{4}/; print $1,"\n"' | sort -f | uniq -c | sort -n" alias gitlog="git ls-files -z | xargs -0n1 git blame -w --show-email | perl -n -e '/^.*?\((.*?)\s+[\d]{4}/; print $1,"\n"' | sort -f | uniq -c | sort -n"
alias proxy='export http_proxy=http://127.0.0.1:1080 https_proxy=http://127.0.0.1:1080 all_proxy=socks5://127.0.0.1:1080' alias proxy='export all_proxy=socks5://127.0.0.1:1080'
alias unproxy='unset http_proxy;unset https_proxy;unset all_proxy' alias unproxy='unset all_proxy'
alias proxy_http='export all_proxy=http://127.0.0.1:1081' alias proxy_http='export all_proxy=http://127.0.0.1:1081'
# assh # assh

Loading…
Cancel
Save