-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
15 lines (15 loc) · 951 Bytes
/
Makefile
File metadata and controls
15 lines (15 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
links:
@mkdir -p ~/.config
[ -f ~/.tmux.conf ] || ln -s ${PWD}/tmux.conf ~/.tmux.conf
[ -f ~/.screenrc ] || ln -s ${PWD}/screenrc ~/.screenrc
[ -f ~/.zshrc ] || ln -s ${PWD}/zshrc ~/.zshrc
[ -f ~/.bashrc ] || ln -s ${PWD}/bashrc ~/.bashrc
[ -f ~/.inputrc ] || ln -s ${PWD}/inputrc ~/.inputrc
[ -d ~/.config/fish ] || [ -L ~/.config/fish ] || ln -s ${PWD}/fish ~/.config/fish
[ -f ~/.gitconfig ] || ln -s ${PWD}/gitconfig ~/.gitconfig
[ -d ~/.config/nvim ] || [ -L ~/.config/nvim ] || ln -s ${PWD}/nvim ~/.config/nvim
[ -f ~/.nvmrc ] || [ -L ~/.nvmrc ] || ln -s ${PWD}/nvmrc ~/.nvmrc
@mkdir -p ~/.config/Code/User
[ -f ~/.config/Code/User/settings.json ] || [ -L ~/.config/Code/User/settings.json ] || ln -s ${PWD}/Code/User/settings.json ~/.config/Code/User/settings.json
[ -f ~/.gitignore ] || [ -L ~/.gitignore ] || ln -s ${PWD}/gitignore ~/.gitignore
[ -d ~/.config/mise ] || [ -L ~/.config/mise ] || ln -s ${PWD}/mise ~/.config/mise