fix zsh dot files

This commit is contained in:
thek4n 2024-01-15 10:39:03 +03:00
parent 9ce207b697
commit 9d2619fbaf
4 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ export SUB
declare -r -A TARGETS=( declare -r -A TARGETS=(
["bash"]=".config/bash .bashrc .profile" ["bash"]=".config/bash .bashrc .profile"
["zsh"]="%bash .config/zsh .zshenv .zprofile .zlogout .inputrc" ["zsh"]="%bash .config/zsh .zshenv .inputrc"
["tmux"]=".tmux.conf" ["tmux"]=".tmux.conf"
["alacritty"]=".config/alacritty" ["alacritty"]=".config/alacritty"
["nvim"]=".config/nvim .local/bin/vim_askpass_helper .local/bin/vim_askpass_helper_python" ["nvim"]=".config/nvim .local/bin/vim_askpass_helper .local/bin/vim_askpass_helper_python"

View File

@ -1,5 +1,5 @@
#!/usr/bin/env zsh #!/usr/bin/env zsh
for zfile in .zshenv .config/zsh/.zshrc .zprofile .zlogout .config/zsh/aliases .config/zsh/completion .config/zsh/history .config/zsh/options .config/zsh/other .config/zsh/plugin .config/zsh/prompt .config/zsh/sourcer; do for zfile in .zshenv .config/zsh/.zshrc .config/zsh/.zprofile .config/zsh/.zlogout .config/zsh/aliases .config/zsh/completion .config/zsh/history .config/zsh/options .config/zsh/other .config/zsh/plugin .config/zsh/prompt .config/zsh/sourcer; do
zcompile "$HOME/$zfile" zcompile "$HOME/$zfile"
done done