diff options
| author | nsfisis <nsfisis@gmail.com> | 2021-05-30 21:36:23 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2021-05-30 21:36:23 +0900 |
| commit | 33d1e3dca1531757b768a23777620a212804f529 (patch) | |
| tree | 1707aaf35c1e22561e5dc7e8325fb78a82cbb9dc /setup.sh | |
| parent | 4f3a417a3d9d41ebeb9b5b1b53fb84de52c6c8b1 (diff) | |
| download | dotfiles-33d1e3dca1531757b768a23777620a212804f529.tar.gz dotfiles-33d1e3dca1531757b768a23777620a212804f529.tar.zst dotfiles-33d1e3dca1531757b768a23777620a212804f529.zip | |
Add starship.toml
Diffstat (limited to 'setup.sh')
| -rwxr-xr-x | setup.sh | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -1,14 +1,12 @@ #!/bin/sh -for filename in .gitconfig .vim .vimrc .zshrc +for name in .gitconfig .vim .vimrc .zshrc do - rm -f ~/$filename - ln -s ~/dotfiles/$filename ~/$filename + ln -s -f ~/dotfiles/$name ~/$name done [ -d ~/.config ] || mkdir ~/.config -for dirname in alacritty git +for name in alacritty git starship.toml do - rm -f ~/.config/$dirname - ln -s ~/dotfiles/.config/$dirname ~/.config/$dirname + ln -s -f ~/dotfiles/.config/$name ~/.config/$name done |
