aboutsummaryrefslogtreecommitdiff
path: root/setup
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2022-06-04 13:33:39 +0100
committerJuan J. Martinez <jjm@usebox.net>2022-06-04 13:33:39 +0100
commit736b7d36fc49c1c16dadc54210a286efb5d644f3 (patch)
tree405eddf6ec8a6b2bcfb96d09584ec587c74ce8db /setup
parent46b3fcde0407d8919f272e21403acf88c9f6edca (diff)
downloaddotnvim-736b7d36fc49c1c16dadc54210a286efb5d644f3.tar.gz
dotnvim-736b7d36fc49c1c16dadc54210a286efb5d644f3.zip
First step to move to only nvim
Diffstat (limited to 'setup')
-rwxr-xr-xsetup17
1 files changed, 17 insertions, 0 deletions
diff --git a/setup b/setup
new file mode 100755
index 0000000..d381799
--- /dev/null
+++ b/setup
@@ -0,0 +1,17 @@
+#!/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/colors/
+rm -f ~/.config/wezterm/colors/wezterm_tokyonight_storm.toml
+ln -s ~/.config/nvim/wezterm_tokyonight_storm.toml ~/.config/wezterm/colors/wezterm_tokyonight_storm.toml
+rm -f ~/.config/wezterm/wezterm.lua
+ln -s ~/.config/nvim/wezterm.lua ~/.config/wezterm/wezterm.lua
+
+echo "Done"
+