Guest User

Untitled

a guest
Jul 13th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. export ZSH=/home/voliveira/.oh-my-zsh
  2.  
  3. ZSH_THEME="powerlevel9k/powerlevel9k"
  4.  
  5. POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir rbenv vcs)
  6. POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status node_version time)
  7. POWERLEVEL9K_PROMPT_ON_NEWLINE=true
  8. POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX=" \n "
  9. POWERLEVEL9K_MULTILINE_SECOND_PROMPT_PREFIX=" $ "
  10. POWERLEVEL9K_NODE_VERSION_FOREGROUND='008'
  11. POWERLEVEL9K_SHORTEN_DIR_LENGTH=5
  12.  
  13. export NVM_LAZY_LOAD=true
  14. export NVM_NO_USE=true
  15. export NVM_AUTO_USE=false
  16.  
  17. export PGHOST="localhost"
  18. export PGUSER="postgres"
  19. export PGPASSWORD="postgres"
  20.  
  21. plugins=(jump zsh-autosuggestions zsh-nvm zsh-syntax-highlighting)
  22. alias g="jump"
  23.  
  24. source $ZSH/oh-my-zsh.sh
  25.  
  26. alias ll='ls -alF'
  27. alias la='ls -A'
  28. alias l='ls -la'
  29. alias vi=vim
  30. alias gpg=gpg2
  31. alias subl=$HOME/Applications/sublime_text_3/sublime_text
  32.  
  33. alias xcp="xclip -selection clipboard"
  34. alias g="jump"
  35. alias ag="ag --ignore-case"
  36. alias h="history"
  37. alias hs="history | ag $1"
  38. alias t='tig'
  39. alias w='which'
  40. alias o='gnome-open $1 &> /dev/null'
  41. alias npmls="npm ls --depth 0"
  42. alias bikevitoria="node ~/git/bikevitoria-cli/bikevitoria.js"
  43. alias bi="bundle install"
  44. alias bu="bundle update"
  45. alias r="bundle exec rails"
  46. alias bikes="node ~/git/bikevitoria-cli/bikevitoria.js"
  47.  
  48. alias be="bundle exec"
  49. alias ci='mvn clean install -DskipUTs=false && notify-send --expire-time=5 --urgency=low ">>> `pwd | xargs basename`" "Build has been finished."'
  50. alias cio="mvn clean install -DskipUTs=false --offline"
  51.  
  52. source /home/voliveira/paywithmybank/extras/scripts/environment.sh;
  53. source /home/voliveira/paywithmybank/extras/scripts/aliases.sh;
  54.  
  55. export PATH="/usr/lib/jvm/java-8-openjdk/bin:$PATH"
  56. export PATH="$HOME/Applications/maven/bin:$HOME/Applications/node/bin:$HOME/.rbenv/bin:$PATH"
  57. eval "$(rbenv init -)"
  58.  
  59. if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
  60. source /etc/profile.d/vte.sh
  61. fi
  62.  
  63. export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=239"
  64. export ZSH_AUTOSUGGEST_STRATEGY="match_prev_cmd"
  65.  
  66. export CLICOLOR=1
  67.  
  68. export NVM_DIR="$HOME/.nvm"
  69. [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
  70. [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
Add Comment
Please, Sign In to add comment