refactor(zsh): move configuration files

This commit is contained in:
Oliver Davies 2022-05-24 22:29:58 +01:00
parent b7518872ff
commit b58302c1ee
21 changed files with 17 additions and 7 deletions

View file

@ -1,3 +1,5 @@
export ZDOTDIR="$HOME/.config/zsh"
PROMPT_EOL_MARK=''
TERM=xterm-256color
WORDCHARS='*?_-.[]~=&;!#$%^(){}<>'

View file

@ -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

View file

@ -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"