From 5a331bcb1a630086c8738ffdbd67fa07d1033c49 Mon Sep 17 00:00:00 2001 From: claw0ry Date: Thu, 2 Jan 2025 14:50:16 +0100 Subject: setup: improve flow --- setup | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'setup') diff --git a/setup b/setup index 5d4f143..e0a1b71 100644 --- a/setup +++ b/setup @@ -8,14 +8,28 @@ ln -sf "$PWD/.inputrc" "$HOME/.inputrc" ln -sf "$PWD/.tmux.conf" "$HOME/.tmux.conf" ln -sf "$PWD/.vimrc" "$HOME/.vimrc" +rm -rf "$HOME/.vim" +ln -sf "$PWD/.vim" "$HOME/.vim" + +# --- XDG_CONFIG_HOME + mkdir -p "$HOME/.config" -ln -sf "$PWD/.vim" "$HOME/.vim" +rm -rf "$HOME/.config/alacritty" ln -sf "$PWD/alacritty" "$HOME/.config/alacritty" + +rm -rf "$HOME/.config/ghostty" ln -sf "$PWD/ghostty" "$HOME/.config/ghostty" + +rm -rf "$HOME/.config/powershell" ln -sf "$PWD/powershell" "$HOME/.config/powershell" +# --- .LOCAL + mkdir -p "$HOME/.local" +rm -rf "$HOME/.local/snippets" ln -sf "$PWD/snippets" "$HOME/.local/snippets" + +rm -rf "$HOME/.local/scripts" ln -sf "$PWD/scripts" "$HOME/.local/scripts" -- cgit v1.2.3