dotfiles/fish/functions/fish_update_dotfiles.fish

6 lines
117 B
Fish
Raw Normal View History

2022-10-05 21:19:12 +00:00
function fish_update_dotfiles
for conf in (ls)
ln --force -sn $PWD/$conf $HOME/.config/$conf
end
end