-
Notifications
You must be signed in to change notification settings - Fork 0
/
create-links
30 lines (24 loc) · 1.19 KB
/
create-links
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
mkdir --parents ~/.config/nvim
ln -s "${HOME}"/vimconfig/.vimrc "${HOME}"/.config/nvim/init.vim
ln -s "${HOME}"/vimconfig/.vimrc "${HOME}"/.vimrc
ln -s "${HOME}"/vimconfig/.fzf.zsh "${HOME}"/.fzf.zsh
ln -s "${HOME}"/.config/nvim/init.vim .vimrc
ln -s "${HOME}"/vimconfig/aliases.zsh "${HOME}"/.oh-my-zsh/custom/aliases.zsh
ln -s "${HOME}"/vimconfig/.pdbrc.py "${HOME}"/.pdbrc.py
sudo ln -s "${HOME}"/vimconfig/.gitconfig /etc/gitconfig
sudo ln -s "${HOME}"/vimconfig/dotfile_commit /usr/local/bin/dotfile_commit
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
ln -s "${HOME}"/vimconfig/.tmux.conf "${HOME}/.tmux.conf"
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash
git config --global user.email "fill-this-in"
git config --global user.name "Rob Levy"
brew install ripgrep fzf
# Don't do this on WSL: tmux is built in!
brew install tmux
# Check the version of this before running it:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
nvm install --lts
sudo apt install exuberant-ctags
# Install Docker (one way or another. I used the api instructions last time.)
# Then, to run docker without sudo:
sudo usermod -aG docker $USER