Compare commits

..

2 Commits

Author SHA1 Message Date
Ein Verne 21c9cf7150
Add ipinfo-cli 2 years ago
Ein Verne 3213e769ad
Add vim plugin editorconfig 2 years ago
  1. 1
      .vim/startup/vundle_vimrc
  2. 1
      Brewfile
  3. 4
      zsh/alias.zsh

1
.vim/startup/vundle_vimrc

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

1
Brewfile

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

4
zsh/alias.zsh

@ -21,8 +21,8 @@ alias mvn-purge="mvn dependency:purge-local-repository"
# 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 proxy='export all_proxy=socks5://127.0.0.1:1080'
alias unproxy='unset all_proxy'
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 unproxy='unset http_proxy;unset https_proxy;unset all_proxy'
alias proxy_http='export all_proxy=http://127.0.0.1:1081'
# assh

Loading…
Cancel
Save