diff options
Diffstat (limited to 'setup')
-rw-r--r-- | setup | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -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" |