Skip to content

Commit 45d9404

Browse files
committedSep 22, 2024
fix clone repo
1 parent b2c6782 commit 45d9404

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎ansible/playbooks/zsh.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -64,25 +64,25 @@
6464
- name: Clone zsh-syntax-highlighting plugin
6565
git:
6666
repo: https://github.com/zsh-users/zsh-syntax-highlighting.git
67-
dest: "{{ zsh_custom }}/plugins/zsh-syntax-highlighting"
67+
dest: "/home/{{ ansible_user }}/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting"
6868
update: yes
6969

7070
- name: Clone zsh-autosuggestions plugin
7171
git:
7272
repo: https://github.com/zsh-users/zsh-autosuggestions.git
73-
dest: "{{ zsh_custom }}/plugins/zsh-autosuggestions"
73+
dest: "/home/{{ ansible_user }}/.oh-my-zsh/custom/plugins/zsh-autosuggestions"
7474
update: yes
7575

7676
- name: Clone zsh-history-substring-search plugin
7777
git:
7878
repo: https://github.com/zsh-users/zsh-history-substring-search.git
79-
dest: "{{ zsh_custom }}/plugins/zsh-history-substring-search"
79+
dest: "/home/{{ ansible_user }}/.oh-my-zsh/custom/plugins/zsh-history-substring-search"
8080
update: yes
8181

8282
- name: Clone you-should-use plugin
8383
git:
8484
repo: https://github.com/MichaelAquilina/zsh-you-should-use.git
85-
dest: "{{ zsh_custom }}/plugins/you-should-use"
85+
dest: "/home/{{ ansible_user }}/.oh-my-zsh/custom/plugins/you-should-use"
8686
update: yes
8787

8888
- name: Ensure .local/bin directory exists

0 commit comments

Comments
 (0)
Please sign in to comment.