.zshrc 1.5 KB

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