.zshrc 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. export EDITOR=/bin/nvim
  16. # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
  17. ZSH_THEME="agnoster"
  18. plugins=(git sudo zsh-autosuggestions zsh-syntax-highlighting docker-compose docker golang magic-enter extract )
  19. source $ZSH/oh-my-zsh.sh
  20. zstyle ':completion:*:*:docker:*' option-stacking yes
  21. zstyle ':completion:*:*:docker-*:*' option-stacking yes
  22. # defaults
  23. MAGIC_ENTER_GIT_COMMAND='git status -u .'
  24. MAGIC_ENTER_OTHER_COMMAND='ls -lh .'
  25. # Example aliases
  26. # alias zshconfig="mate ~/.zshrc"
  27. # alias ohmyzsh="mate ~/.oh-my-zsh"
  28. #te4gh0st logo in start
  29. ~/.te4gh0st/te4gh0st
  30. alias ports="sudo lsof -nP -iTCP -sTCP:LISTEN"