33 lines
776 B
Plaintext
33 lines
776 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# Set up basic symlinks and directory structure when installing dotfiles.
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# General
|
||
|
mkdir -p $HOME/dev
|
||
|
ln -s $HOME/dev/dotfiles/script $HOME/script
|
||
|
|
||
|
# ZSH
|
||
|
mkdir -p $HOME/.config/zsh/functions
|
||
|
ln -s $HOME/dev/dotfiles/zshenv $HOME/.zshenv
|
||
|
ln -s $HOME/dev/dotfiles/zshrc $HOME/.config/zsh/.zshrc
|
||
|
|
||
|
# Tmux
|
||
|
ln -s $HOME/dev/dotfiles/tmux.conf $HOME/.tmux.conf
|
||
|
|
||
|
# Vim
|
||
|
mkdir -p $HOME/.vim/pack/git-plugins/{opt,start}
|
||
|
ln -s $HOME/dev/dotfiles/vimrc $HOME/.vimrc
|
||
|
ln -s $HOME/dev/dotfiles/vim/after $HOME/.vim/after
|
||
|
|
||
|
# Git
|
||
|
ln -s $HOME/dev/dotfiles/gitconfig $HOME/.gitconfig
|
||
|
mkdir -p $HOME/.config/git
|
||
|
ln -s $HOME/dev/dotfiles/gitignore $HOME/.config/git/ignore
|
||
|
|
||
|
# Alacritty
|
||
|
ln -s $HOME/dev/dotfiles/alacritty.yml $HOME/.config/alacritty.yml
|
||
|
|
||
|
echo "Done"
|