Advertisement
WILDAN_IZZUDIN

POWERLEVEL9K SETTING

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