refactor(zsh): move configuration files
This commit is contained in:
parent
b7518872ff
commit
b58302c1ee
roles/zsh
|
@ -1,3 +1,5 @@
|
|||
export ZDOTDIR="$HOME/.config/zsh"
|
||||
|
||||
PROMPT_EOL_MARK=''
|
||||
TERM=xterm-256color
|
||||
WORDCHARS='*?_-.[]~=&;!#$%^(){}<>'
|
||||
|
|
|
@ -15,9 +15,8 @@ sources=(
|
|||
'prompt'
|
||||
'post/completion'
|
||||
)
|
||||
|
||||
for s in "${sources[@]}"; do
|
||||
source $HOME/.zsh/configs/${s}.zsh
|
||||
source $ZDOTDIR/configs/${s}.zsh
|
||||
done
|
||||
|
||||
# Local config
|
|
@ -14,12 +14,21 @@
|
|||
|
||||
- name: Configuration
|
||||
ansible.builtin.file:
|
||||
src: "{{ role_path }}/files/{{ zsh_config_item }}"
|
||||
dest: "{{ ansible_user_dir }}/{{ zsh_config_item }}"
|
||||
src: "{{ role_path }}/files/{{ zsh_config_item.src }}"
|
||||
path: "{{ zsh_config_item.path }}"
|
||||
state: link
|
||||
loop_control:
|
||||
loop_var: zsh_config_item
|
||||
with_items:
|
||||
- .zsh
|
||||
- .zshenv
|
||||
- .zshrc
|
||||
- { src: config, path: "{{ ansible_user_dir }}/.config/zsh" }
|
||||
- { src: .zshenv, path: "{{ ansible_user_dir }}/.zshenv" }
|
||||
|
||||
- name: Delete old files
|
||||
ansible.builtin.file:
|
||||
path: "{{ old_files_item }}"
|
||||
state: absent
|
||||
loop_control:
|
||||
loop_var: old_files_item
|
||||
with_items:
|
||||
- "{{ ansible_user_dir }}/.zsh"
|
||||
- "{{ ansible_user_dir }}/.zshrc"
|
||||
|
|
Loading…
Reference in a new issue