--- # Shell role defaults # List of users to configure zsh for # By default, only configure the ansible user # Override in host_vars to add more users shell_users: - "{{ ansible_user | default(ansible_user_id) }}" # Additional users to configure (appended to shell_users) # Use this to add users WITHOUT having to repeat ansible_user # Example in host_vars: # shell_additional_users: # - beast # - ladmin shell_additional_users: [] # Zsh plugins to install zsh_plugins: - name: "zsh-syntax-highlighting" repo: "https://github.com/zsh-users/zsh-syntax-highlighting.git" - name: "zsh-autosuggestions" repo: "https://github.com/zsh-users/zsh-autosuggestions.git"