ansible-role-zsh icon indicating copy to clipboard operation
ansible-role-zsh copied to clipboard

Setup antigen with oh-my-zsh, powerlevel10k theme, fzf, autosuggestions, syntax-highlighting

Results 10 ansible-role-zsh issues
Sort by recently updated
recently updated
newest added

Just deployed this playbook on a new machine. Got this in my ~/.zshrc: ```bash ... source "$HOME/.antigen/antigen/antigen.zsh" antigen use oh-my-zsh antigen bundle [ antigen bundle { antigen bundle ' antigen...

The role is throwing an error when running with Ansible 2.13.1: ``` fatal: [machine-06]: FAILED! => changed=false msg: 'AnsibleUndefinedVariable: ''str object'' has no attribute ''hotkey''' ``` When i downgrade to...

With latest updates of Vagrant, I get this error regarding [this line on `tasks/configure.yml`](https://github.com/viasite-ansible/ansible-role-zsh/blob/master/tasks/configure.yml#L25:L32): ``` TASK [zsh : Check commands exists] ********************************************* [DEPRECATION WARNING]: Using tests as filters is deprecated....

Role fails on the "Download fzf" step, which uses the `unarchive` module. >TASK [viasite-ansible.zsh : Download fzf] ************************************************************************************************************** fatal: [localhost]: FAILED! => {"changed": false, "failed": true, "msg": "Failed to find...

bug

Same problem as [this issue](https://github.com/viasite-ansible/ansible-role-zsh/issues/63).

The way the variables were marged created another level of mappings. The template would then iterate every character instead of every element in the list. I implemented the merge so...

```bash TASK [viasite-ansible.zsh : Download fzf to ~root/bin] ********************************************************************************** task path: /home/leonch/.ansible/roles/viasite-ansible.zsh/tasks/install.yml:66 skipping: [quantumhome] => {"changed": false, "msg": "skipped, since /root/bin/fzf exists"} changed: [raspberrypi] => {"changed": true, "dest": "/root/bin", "extract_results":...

When running the ansible role on ALMA 9.3 I encounter warnings: > zsh: fdfind: command not found... fd-find is installed in */usr/bin/fd* and not */usr/bin/fdfind* Removing this command from *templates/zshrc.js2*...

Hello. When running `ansible-playbook OhMyZSH.yml --limit=MyHome` ```yml --- - hosts: all vars: # your extra bundles here zsh_antigen_bundles_extras: [] # your variables here # zsh_autosuggestions_bind_key: "^U" roles: - { role:...

I am on a Mac Intel on Ventura 13.6.4 My playbook looks like: ``` --- - name: Configure host hosts: all roles: - role: viasite-ansible.zsh tags: ['zsh'] ``` If I...