aboutsummaryrefslogtreecommitdiff
path: root/setup
blob: 7259d314977337a297c4011c745ee5dccd2dc3f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

set +e

echo "Setting symlinks for tmux..."
rm -f ~/.tmux.conf
ln -s ~/.config/nvim/tmux.conf ~/.tmux.conf

echo "Setting symlinks for wezterm..."
mkdir -p ~/.config/wezterm/
rm -f ~/.config/wezterm/wezterm.lua
ln -s ~/.config/nvim/wezterm.lua ~/.config/wezterm/wezterm.lua

echo "Done"