Rewrote the Aug-1 sandbox-era source into a full workstation setup for both ultix-streaming accounts: oh-my-zsh with autosuggestions/ syntax-highlighting/completions + powerlevel10k (pinned externals), fzf wiring, vi mode, tmux conf, aliases under ~/.config/zsh, gitconfig template that keeps hooksPath/tea for reachableceo only. Detail + verification: https://projects.knownelement.com/issues/612#note-3335
18 lines
792 B
Bash
18 lines
792 B
Bash
# p10k — lean, compatible glyphs (no nerd font required on fresh hosts).
|
|
# Run `p10k configure` on a nerd-font terminal for the full treatment;
|
|
# it will rewrite this file.
|
|
|
|
typeset -g POWERLEVEL9K_MODE=compatible
|
|
|
|
typeset -g POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir vcs)
|
|
typeset -g POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status command_execution_time background_jobs time)
|
|
|
|
typeset -g POWERLEVEL9K_PROMPT_ADD_NEWLINE=false
|
|
typeset -g POWERLEVEL9K_SHORTEN_DIR_LENGTH=3
|
|
typeset -g POWERLEVEL9K_SHORTEN_STRATEGY=truncate_to_unique
|
|
typeset -g POWERLEVEL9K_VCS_SHORTEN_STRATEGY=truncate_to_unique
|
|
typeset -g POWERLEVEL9K_VCS_SHORTEN_MAX_LENGTH=40
|
|
typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_THRESHOLD=3
|
|
typeset -g POWERLEVEL9K_TIME_FORMAT='%D{%H:%M}'
|
|
typeset -g POWERLEVEL9K_STATUS_VERBOSE=false
|