Files
ansible-role-oh-my-zsh/defaults/main.yml

93 lines
2.4 KiB
YAML

---
# Role vars.
omz_install_zsh: false
# User vars.
omz_user: []
# Oh My ZSH vars.
omz_git_repository: "https://github.com/robbyrussell/oh-my-zsh.git"
omz_install_directory: ".oh-my-zsh"
# Oh My ZSH template vars.
omz_zshrc_create: true
omz_zshrc_template: "templates/zshrc.zsh-template.j2"
omz_zshrc_backup: true
omz_zshrc_force: true
omz_zsh_theme: "robbyrussell"
omz_case_sensitive: false
omz_hyphen_insensitive: false
omz_disable_auto_update: false
omz_update_zsh_days: 13
omz_disable_ls_colors: false
omz_disable_auto_title: false
omz_enable_correction: false
omz_completion_waiting_dots: false
omz_disable_untracked_files_dirty: false
omz_hist_stamps: "mm/dd/yyyy"
omz_zsh_custom: "$ZSH/custom"
omz_plugins: []
# P10K Vars
# Powerlevel10k Git repository url
p10k_repository_url: 'https://github.com/romkatv/powerlevel10k.git'
# Install p10k for the following linux users
# Default: the linux user running Ansible
p10k_users:
- "{{ ansible_user_id }}"
# Zsh plugin used, zsh, ohmyzsh, prezto, Zim, etc..
# All plugin names can be found here https://github.com/romkatv/powerlevel10k#installation
zsh_plugin: zsh
# Setup p10k theme to use
# Valid values: lean, classic, rainbow, pure
p10k_prompt_style: "classic"
# Show current time
# Valid values: no, 24-hour, 12-hour
p10k_prompt_time: "24-hour"
# Prompt sperator
# Valid values: angled, vertical, slanted, round
p10k_prompt_separator: "angled"
# Prompt heads
# Valid values: sharp, blurred, slanted, round
p10k_prompt_head: "sharp"
# Prompt tails
# Valid values: flat, blurred, sharp, slanted, round
p10k_prompt_tails: flat
# Terminal prompt height
# Valid values: one-line, two-lines
p10k_prompt_height: two-lines
# Prompt connection, only used if "p10k_prompt_height" value is "two-lines"
# Valid values: disconnected, dotted, solid
p10k_prompt_connection: disconnected
# Prompt connection color, only used if
# "p10k_prompt_connection" value is "dotted" or "solid"
# or "p10k_prompt_frame" is not "no"
# Valid values: lightest, light, dark, darkest, black, white, green, blue
p10k_prompt_connection_color: "dark"
# Prompt frame connection
# Valid values: no, left, right, full
p10k_prompt_frame: left
# Sparse prompt with an empty line before promp
# Valid values: compact, sparse
p10k_prompt_spacing: compact
# Terminal flow
# Valid values: concise, fluent
p10k_prompt_flow: concise
# Enable transient prompt
# Valid values: yes, no
p10k_transient_prompt: "no"