Advertisement
WILDAN_IZZUDIN

.ZSHRC

Jul 29th, 2020
1,695
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 5.03 KB | None | 0 0
  1. clock=$(date +%A", "%d" "%B" "%Y" ─ \e[40;38;5;231m \u26A1 \e[0m @neoxr")
  2. echo -e "┏──────────────────────────────────────────────────┓
  3. │                                                  │
  4. │            Welcome to \e[38;5;228mArch Linux\e[0m 5.3.8           │
  5. │                                                  │
  6. ┖──────────────────────────────────────────────────┛
  7. └─\e[40;38;5;231m \u26A1 \e[0m $clock"
  8. export ZSH="/data/data/com.termux/files/home/.oh-my-zsh"
  9.  
  10. # Set name of the theme to load --- if set to "random", it will
  11. # load a random theme each time oh-my-zsh is loaded, in which case,
  12. # to know which specific one was loaded, run: echo $RANDOM_THEME
  13. # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
  14. # ZSH_THEME="powerlevel9k/powerlevel9k"
  15.  
  16. POWERLEVEL9K_ANDROID_ICON="\u26a1"
  17. POWERLEVEL9K_PROMPT_ADD_NEWLINE=true
  18. POWERLEVEL9K_STATUS_ERROR_BACKGROUND="000"
  19. POWERLEVEL9K_STATUS_ERROR_FOREGROUND="196"
  20. POWERLEVEL9K_CARRIAGE_RETURN_ICON="\u2717"
  21. POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(os_icon dir vcs)
  22. POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX="┌─"
  23. POWERLEVEL9K_MULTILINE_LAST_PROMPT_PREFIX="└──╤───❯❯ "
  24. POWERLEVEL9K_PROMPT_ON_NEWLINE=true
  25. POWERLEVEL9K_RPROMPT_ON_NEWLINE=true
  26. POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status custom_neoxr)
  27. POWERLEVEL9K_CUSTOM_NEOXR_BACKGROUND="228"
  28. POWERLEVEL9K_CUSTOM_NEOXR="date +%R"
  29. POWERLEVEL9K_CUSTOM_NEOXR_FOREGROUND="000"
  30. PROMPT_EOL_MARK=''
  31. # Set list of themes to pick from when loading at random
  32. # Setting this variable when ZSH_THEME=random will cause zsh to load
  33. # a theme from this variable instead of looking in ~/.oh-my-zsh/themes/
  34. # If set to an empty array, this variable will have no effect.
  35. # ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
  36. # POWERLEVEL9K_MODE="nerdfont-complete"
  37. source $HOME/powerlevel9k/powerlevel9k.zsh-theme
  38. # Uncomment the following line to use case-sensitive completion.
  39. # CASE_SENSITIVE="true"
  40.  
  41. # Uncomment the following line to use hyphen-insensitive completion.
  42. # Case-sensitive completion must be off. _ and - will be interchangeable.
  43. # HYPHEN_INSENSITIVE="true"
  44.  
  45. # Uncomment the following line to disable bi-weekly auto-update checks.
  46. # DISABLE_AUTO_UPDATE="true"
  47.  
  48. # Uncomment the following line to automatically update without prompting.
  49. # DISABLE_UPDATE_PROMPT="true"
  50.  
  51. # Uncomment the following line to change how often to auto-update (in days).
  52. # export UPDATE_ZSH_DAYS=13
  53.  
  54. # Uncomment the following line if pasting URLs and other text is messed up.
  55. # DISABLE_MAGIC_FUNCTIONS=true
  56.  
  57. # Uncomment the following line to disable colors in ls.
  58. # DISABLE_LS_COLORS="true"
  59.  
  60. # Uncomment the following line to disable auto-setting terminal title.
  61. # DISABLE_AUTO_TITLE="true"
  62.  
  63. # Uncomment the following line to enable command auto-correction.
  64. # ENABLE_CORRECTION="true"
  65.  
  66. # Uncomment the following line to display red dots whilst waiting for completion.
  67. # COMPLETION_WAITING_DOTS="true"
  68.  
  69. # Uncomment the following line if you want to disable marking untracked files
  70. # under VCS as dirty. This makes repository status check for large repositories
  71. # much, much faster.
  72. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  73.  
  74. # Uncomment the following line if you want to change the command execution time
  75. # stamp shown in the history command output.
  76. # You can set one of the optional three formats:
  77. # "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  78. # or set a custom format using the strftime function format specifications,
  79. # see 'man strftime' for details.
  80. # HIST_STAMPS="mm/dd/yyyy"
  81.  
  82. # Would you like to use another custom folder than $ZSH/custom?
  83. # ZSH_CUSTOM=/path/to/new-custom-folder
  84.  
  85. # Which plugins would you like to load?
  86. # Standard plugins can be found in ~/.oh-my-zsh/plugins/*
  87. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  88. # Example format: plugins=(rails git textmate ruby lighthouse)
  89. # Add wisely, as too many plugins slow down shell startup.
  90. plugins=(git)
  91.  
  92. source $ZSH/oh-my-zsh.sh
  93.  
  94. # User configuration
  95.  
  96. # export MANPATH="/usr/local/man:$MANPATH"
  97.  
  98. # You may need to manually set your language environment
  99. # export LANG=en_US.UTF-8
  100.  
  101. # Preferred editor for local and remote sessions
  102. # if [[ -n $SSH_CONNECTION ]]; then
  103. #   export EDITOR='vim'
  104. # else
  105. #   export EDITOR='mvim'
  106. # fi
  107.  
  108. # Compilation flags
  109. # export ARCHFLAGS="-arch x86_64"
  110.  
  111. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  112. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  113. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  114. # For a full list of active aliases, run `alias`.
  115. #
  116. # Example aliases
  117. # alias zshconfig="mate ~/.zshrc"
  118. # alias ohmyzsh="mate ~/.oh-my-zsh"
  119. source /data/data/com.termux/files/home/.zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
  120.  
  121. export NVM_DIR="/data/data/com.termux/files/home/.nvm"
  122. [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"  # This loads nvm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement