zshrc 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. #!/bin/bash
  2. # $$\ $$\ $$\ $$\ $$$$$$\ $$\
  3. # $$ | $$ | $$ | $$ | $$$ __$$\ $$ |
  4. # $$$$$$\ $$$$$$\ $$ | $$ | $$$$$$\ $$$$$$$\ $$$$\ $$ | $$$$$$$\ $$$$$$\
  5. # \_$$ _| $$ __$$\ $$$$$$$$ |$$ __$$\ $$ __$$\ $$\$$\$$ |$$ _____|\_$$ _|
  6. # $$ | $$$$$$$$ |\_____$$ |$$ / $$ |$$ | $$ |$$ \$$$$ |\$$$$$$\ $$ |
  7. # $$ |$$\ $$ ____| $$ |$$ | $$ |$$ | $$ |$$ |\$$$ | \____$$\ $$ |$$\
  8. # \$$$$ |\$$$$$$$\ $$ |\$$$$$$$ |$$ | $$ |\$$$$$$ /$$$$$$$ | \$$$$ |
  9. # \____/ \_______| \__| \____$$ |\__| \__| \______/ \_______/ \____/
  10. # $$\ $$ |
  11. # \$$$$$$ |
  12. # \______/
  13. # Path to your oh-my-zsh installation.
  14. export ZSH="$HOME/.oh-my-zsh"
  15. # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
  16. ZSH_THEME="agnoster"
  17. plugins=(git sudo zsh-autosuggestions zsh-syntax-highlighting docker-compose docker golang magic-enter extract )
  18. source $ZSH/oh-my-zsh.sh
  19. zstyle ':completion:*:*:docker:*' option-stacking yes
  20. zstyle ':completion:*:*:docker-*:*' option-stacking yes
  21. # defaults
  22. MAGIC_ENTER_GIT_COMMAND='git status -u .'
  23. MAGIC_ENTER_OTHER_COMMAND='ls -lh .'
  24. # Example aliases
  25. # alias zshconfig="mate ~/.zshrc"
  26. # alias ohmyzsh="mate ~/.oh-my-zsh"
  27. #te4gh0st logo in start
  28. ~/.te4gh0st/te4gh0st
  29. alias ports="sudo lsof -nP -iTCP -sTCP:LISTEN"