-
-
Save sergiy-rudenko/1eec8a731867b8f670b2c75e30c49178 to your computer and use it in GitHub Desktop.
PowerLevel9K configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # General config | |
| POWERLEVEL9K_MODE='nerdfont-complete' | |
| POWERLEVEL9K_COLOR_SCHEME='dark' | |
| # Prompts | |
| if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then | |
| POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(ssh context dir virtualenv vcs) | |
| else | |
| POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(root_indicator dir virtualenv vcs) | |
| fi | |
| POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(background_jobs status) | |
| POWERLEVEL9K_SHORTEN_DIR_LENGTH=2 | |
| POWERLEVEL9K_SHORTEN_DELIMITER=… | |
| POWERLEVEL9K_LEFT_SEGMENT_SEPARATOR='\ue0b0' | |
| POWERLEVEL9K_RIGHT_SEGMENT_SEPARATOR='\ue0b2' | |
| POWERLEVEL9K_PROMPT_ON_NEWLINE=false | |
| POWERLEVEL9K_PROMPT_ADD_NEWLINE=true | |
| #POWERLEVEL9K_RPROMPT_ON_NEWLINE=true | |
| #POWERLEVEL9K_DIR_PATH_SEPARATOR="%F{grey}\/%F{white}" | |
| #POWERLEVEL9K_DIR_OMIT_FIRST_CHARACTER=true | |
| POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX="╭" | |
| POWERLEVEL9K_MULTILINE_LAST_PROMPT_PREFIX="╰\uF460\uF460\uF460 " | |
| # Custom segment "now playing" | |
| #POWERLEVEL9K_CUSTOM_NOW_PLAYING='~/.dotfiles/bin/nowplaying' | |
| POWERLEVEL9K_CUSTOM_NOW_PLAYING_BACKGROUND='blue' | |
| POWERLEVEL9K_CUSTOM_NOW_PLAYING_FOREGROUND='black' | |
| # Context | |
| POWERLEVEL9K_ROOT_INDICATOR_BACKGROUND='red' | |
| POWERLEVEL9K_ROOT_INDICATOR_FOREGROUND='black' | |
| POWERLEVEL9K_ROOT_ICON="\uf21b" | |
| # Status | |
| POWERLEVEL9K_STATUS_VERBOSE=false | |
| # Battery colors | |
| POWERLEVEL9K_BATTERY_CHARGING='107' | |
| POWERLEVEL9K_BATTERY_CHARGED='blue' | |
| POWERLEVEL9K_BATTERY_LOW_THRESHOLD='50' | |
| POWERLEVEL9K_BATTERY_LOW_COLOR='red' | |
| # VCS | |
| export DEFAULT_USER="admin" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment