# ██ # ██ # ██████ ██████░██ # ░░░░██ ██░░░░ ░██████░ # ██ ░░█████ ░██░░░██░ # ██ ░░░░░██░██ ░██░ # ██████ ██████ ░██ ░██░ # ░░░░░░ ░░░░░░ ░░░ ░░░ #------------------------------ # TTY colors #------------------------------ if [ "$TERM" = "linux" ]; then _SEDCMD='s/.*\*color\([0-9]\{1,\}\).*#\([0-9a-fA-F]\{6\}\).*/\1 \2/p' for i in $(sed -n "$_SEDCMD" $HOME/.Xresources | awk '$1 < 16 {printf "\\e]P%X%s", $1, $2}'); do echo -en "$i" done clear fi #------------------------------ # Source config files #------------------------------ if [ -r $HOME/.zaliases ] ; then source $HOME/.zaliases fi #if [ -r $HOME/.zshenv ] ; then # source $HOME/.zshenv #fi ZSH_THEME="powerlevel9k/powerlevel9k" #ZSH_THEME="agnoster" # Auto completion autoload -Uz compinit typeset -i updated_at=$(date +'%j' -r ~/.zcompdump 2>/dev/null || stat -f '%Sm' -t '%j' ~/.zcompdump 2>/dev/null) if [ $(date +'%j') != $updated_at ]; then compinit -i else compinit -C -i fi # Load complist module zmodload -i zsh/complist # Save history HISTFILE=$HOME/.zsh_history HISTSIZE=100000 SAVEHIST=$HISTSIZE # No duplicates in history setopt hist_ignore_all_dups # remove older duplicate entries from history setopt hist_reduce_blanks # remove superfluous blanks from history items setopt inc_append_history # save history entries as soon as they are entered setopt share_history # share history between different instances of the shell # Auto correction setopt correct_all # autocorrect commands setopt auto_list # automatically list choices on ambiguous completion setopt auto_menu # automatically use menu completion setopt always_to_end # move cursor to end if word had one match #oh-my-zsh plugins plugins=( zsh-autosuggestions zsh-syntax-highlighting history-substring-search archlinux sudo tmux yadm fasd fzf ) source $ZSH/oh-my-zsh.sh # My scripts PATH=/home/hate/go/bin:/usr/local/bin:/home/hate/.local/bin:/home/hate/.config/Scripts:$PATH # Init pmy eval "$(pmy init)" # Wpg restore on terminals (cat ~/.config/wpg/sequences &) # Import colorscheme from 'wal' asynchronously # & # Run the process in the background. # ( ) # Hide shell job control messages. #(cat ~/.cache/wal/sequences &) # Alternative (blocks terminal for 0-3ms) #cat ~/.cache/wal/sequences # To add support for TTYs this line can be optionally added. #source ~/.cache/wal/colors-tty.sh #FASD eval "$(fasd --init auto)" [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh #LF LFCD="/home/hate/.config/lf/lfcd.sh" if [ -f "$LFCD" ]; then source "$LFCD" fi bindkey -s '^o' 'lfcd\n' # The next line updates PATH for the Google Cloud SDK. if [ -f '/home/hate/google-cloud-sdk/path.zsh.inc' ]; then source '/home/hate/google-cloud-sdk/path.zsh.inc'; fi # The next line enables shell command completion for gcloud. if [ -f '/home/hate/google-cloud-sdk/completion.zsh.inc' ]; then source '/home/hate/google-cloud-sdk/completion.zsh.inc'; fi # Powerlevel9k #POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(icons_test) POWERLEVEL9K_MODE=nerdfont-complete POWERLEVEL9K_PROMPT_ADD_NEWLINE=true # LEFT_PROMPT # =========================================================== POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(os_icon battery ram time newline dir_joined) POWERLEVEL9K_LEFT_SEGMENT_SEPARATOR='' POWERLEVEL9K_LEFT_SUBSEGMENT_SEPARATOR=' ' POWERLEVEL9K_WHITESPACE_BETWEEN_LEFT_SEGMENTS='' # status # POWERLEVEL9K_STATUS_VERBOSE=false # os_icon custom POWERLEVEL9K_OS_ICON_BACKGROUND='none' POWERLEVEL9K_OS_ICON_FOREGROUND='004' # battery POWERLEVEL9K_BATTERY_LOW_BACKGROUND='none' POWERLEVEL9K_BATTERY_LOW_FOREGROUND='001' POWERLEVEL9K_BATTERY_CHARGING_BACKGROUND='none' POWERLEVEL9K_BATTERY_CHARGING_FOREGROUND='076' POWERLEVEL9K_BATTERY_CHARGED_BACKGROUND='none' POWERLEVEL9K_BATTERY_CHARGED_FOREGROUND='076' POWERLEVEL9K_BATTERY_DISCONNECTED_BACKGROUND='none' POWERLEVEL9K_BATTERY_DISCONNECTED_FOREGROUND='003' POWERLEVEL9K_BATTERY_LOW_THRESHOLD=15 POWERLEVEL9K_BATTERY_VERBOSE=false POWERLEVEL9K_BATTERY_STAGES='' # time # POWERLEVEL9K_TIME_FORMAT="%D{%d.%m.%y %H:%M:%S}" POWERLEVEL9K_TIME_ICON='' POWERLEVEL9K_TIME_BACKGROUND='none' POWERLEVEL9K_TIME_FOREGROUND='006' # ram POWERLEVEL9K_RAM_ICON='' POWERLEVEL9K_RAM_BACKGROUND='none' POWERLEVEL9K_RAM_FOREGROUND='006' # dir POWERLEVEL9K_SHORTEN_DELIMITER='' POWERLEVEL9K_SHORTEN_DIR_LENGTH=7 # POWERLEVEL9K_SHORTEN_STRATEGY='truncate_to_first_and_last' POWERLEVEL9K_ETC_ICON='' POWERLEVEL9K_FOLDER_ICON='' POWERLEVEL9K_HOME_ICON='' POWERLEVEL9K_HOME_SUB_ICON='' POWERLEVEL9K_DIR_ETC_BACKGROUND='none' POWERLEVEL9K_DIR_ETC_FOREGROUND='005' POWERLEVEL9K_DIR_HOME_BACKGROUND='none' POWERLEVEL9K_DIR_HOME_FOREGROUND='004' POWERLEVEL9K_DIR_DEFAULT_BACKGROUND='none' POWERLEVEL9K_DIR_DEFAULT_FOREGROUND='005' POWERLEVEL9K_DIR_HOME_SUBFOLDER_BACKGROUND='none' POWERLEVEL9K_DIR_HOME_SUBFOLDER_FOREGROUND='004' # customization # POWERLEVEL9K_LEFT_SEGMENT_SEPARATOR='' # RIGHT_PROMP # =========================================================== POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(vcs) POWERLEVEL9K_RIGHT_SEGMENT_SEPARATOR='' POWERLEVEL9K_RIGHT_SUBSEGMENT_SEPARATOR=' ' POWERLEVEL9K_WHITESPACE_BETWEEN_RIGHT_SEGMENTS='' # vcs POWERLEVEL9K_SHOW_CHANGESET=true POWERLEVEL9K_CHANGESET_HASH_LENGTH=6 POWERLEVEL9K_VCS_CLEAN_BACKGROUND='none' POWERLEVEL9K_VCS_CLEAN_FOREGROUND='076' POWERLEVEL9K_VCS_UNTRACKED_BACKGROUND='none' POWERLEVEL9K_VCS_UNTRACKED_FOREGROUND='005' POWERLEVEL9K_VCS_MODIFIED_BACKGROUND='none' POWERLEVEL9K_VCS_MODIFIED_FOREGROUND='003' POWERLEVEL9K_VCS_GIT_HOOKS=(vcs-detect-changes git-untracked git-aheadbehind git-remotebranch git-tagname)