Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. # Path to your oh-my-zsh installation.
  2. export ZSH="/Users/enmanuelduran/.oh-my-zsh"
  3.  
  4. # My zsh theme
  5. ZSH_THEME="robbyrussell"
  6.  
  7. # Loaded plugins
  8. plugins=(git)
  9.  
  10. source $ZSH/oh-my-zsh.sh
  11.  
  12. # zsh tweaks
  13. source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh
  14. source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
  15.  
  16. # nvm
  17. export NVM_DIR="$HOME/.nvm"
  18. [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
  19. [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
  20.  
  21. # User configuration
  22. # Editor
  23. export EDITOR='vim'
  24.  
  25. # ripgrep
  26. export RIPGREP_CONFIG_PATH="$HOME/.ripgreprc"
  27.  
  28. # Git Aliases
  29. alias "'git st'=git status"
  30. alias "'git co'=git commit"
  31. alias "'git am'=git commit --ammend"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement