diff options
author | Juan J. Martinez <jjm@usebox.net> | 2022-06-04 13:33:39 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-06-04 13:33:39 +0100 |
commit | 736b7d36fc49c1c16dadc54210a286efb5d644f3 (patch) | |
tree | 405eddf6ec8a6b2bcfb96d09584ec587c74ce8db /setup | |
parent | 46b3fcde0407d8919f272e21403acf88c9f6edca (diff) | |
download | dotnvim-736b7d36fc49c1c16dadc54210a286efb5d644f3.tar.gz dotnvim-736b7d36fc49c1c16dadc54210a286efb5d644f3.zip |
First step to move to only nvim
Diffstat (limited to 'setup')
-rwxr-xr-x | setup | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -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" + |