20 lines
634 B
Bash
Executable File
20 lines
634 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# clone_and_link.sh
|
|
# Copyright (C) 2016 fabian <fabian@fabi-laptop-arch>
|
|
#
|
|
# Distributed under terms of the MIT license.
|
|
#
|
|
|
|
|
|
gln -Tsv $PWD/zsh $HOME/.zsh
|
|
gln -Tsv ~/.zsh/.zshrc $HOME/.zshrc
|
|
gln -Tsv $PWD/tmux $HOME/.tmux
|
|
gln -Tsv ~/.tmux/.tmux.conf $HOME/.tmux.conf
|
|
gln -Tsv $PWD/nvim $HOME/.config/nvim
|
|
gln -Tsv $PWD/.config/alacritty $HOME/.config/alacritty
|
|
gln -Tsv $PWD/zsh/.p10k.mac.zsh.example $PWD/zsh/.p10k.mac.zsh
|
|
gln -Tsv $PWD/zsh/.mac_config.example $PWD/zsh/.mac_config
|
|
gln -Tsv $PWD/zsh/.virtual_env_config.zsh_mac.example $PWD/zsh/.virtual_env_config.zsh
|
|
gln -Tsv $PWD/update_mac.sh $HOME/update_mac.sh
|