You've already forked dotfiles
fix: Updating the deploy script to use relative dot notation which helps
deploy on MacOS more easily.
This commit is contained in:
23
deploy.sh
23
deploy.sh
@@ -6,18 +6,17 @@
|
|||||||
|
|
||||||
# Relative path/name as keys, destination path as values
|
# Relative path/name as keys, destination path as values
|
||||||
declare -A configs=(
|
declare -A configs=(
|
||||||
["zsh/zshrc"]="$HOME/.zshrc"
|
["./zsh/zshrc"]="$HOME/.zshrc"
|
||||||
["zsh/zsh_functions"]="$HOME/.config/zsh/zsh_functions.zsh"
|
["./zsh/zsh_functions"]="$HOME/.config/zsh/zsh_functions.zsh"
|
||||||
["zsh/zsh_aliases"]="$HOME/.config/zsh/zsh_aliases.zsh"
|
["./zsh/zsh_aliases"]="$HOME/.config/zsh/zsh_aliases.zsh"
|
||||||
["zsh/zsh_exports"]="$HOME/.config/zsh/zsh_exports.zsh"
|
["./zsh/zsh_exports"]="$HOME/.config/zsh/zsh_exports.zsh"
|
||||||
["zsh/fb-custom.zsh-theme"]="$HOME/.oh-my-zsh/custom/themes"
|
["./zsh/fb-custom.zsh-theme"]="$HOME/.oh-my-zsh/custom/themes"
|
||||||
["nvim/init.lua"]="$HOME/.config/nvim/init.lua"
|
["./nvim/init.lua"]="$HOME/.config/nvim/init.lua"
|
||||||
["nvim/lua"]="$HOME/.config/nvim/"
|
["./nvim/lua"]="$HOME/.config/nvim/"
|
||||||
["nvim/after"]="$HOME/.config/nvim/"
|
["./nvim/after"]="$HOME/.config/nvim/"
|
||||||
["nvim/snippets"]="$HOME/.config/nvim/"
|
["./nvim/snippets"]="$HOME/.config/nvim/"
|
||||||
["tmux.conf"]="$HOME/.tmux.conf"
|
["./tmux.conf"]="$HOME/.tmux.conf"
|
||||||
["wezterm/wezterm.lua"]="$HOME/.config/wezterm/wezterm.lua"
|
["./wezterm/wezterm.lua"]="$HOME/.config/wezterm/wezterm.lua"
|
||||||
["npmrc"]="$HOME/.npmrc"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
declare -a config_directories=(
|
declare -a config_directories=(
|
||||||
|
|||||||
Reference in New Issue
Block a user