From c86fe4852cd1d45cb8c39b8e0639f224d8e20d07 Mon Sep 17 00:00:00 2001 From: Tran Hau Date: Fri, 2 Apr 2021 16:18:08 +0700 Subject: [PATCH] chore: cleanup unused scripts --- Scripts/debian.sh | 12 ------------ Scripts/fedora.sh | 12 ------------ Scripts/misc.sh | 18 ------------------ Scripts/projects.sh | 10 ---------- 4 files changed, 52 deletions(-) delete mode 100755 Scripts/debian.sh delete mode 100755 Scripts/fedora.sh delete mode 100755 Scripts/misc.sh delete mode 100755 Scripts/projects.sh diff --git a/Scripts/debian.sh b/Scripts/debian.sh deleted file mode 100755 index 37cd134..0000000 --- a/Scripts/debian.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env bash - -sudo apt install \ - build-essential \ - zsh \ - curl wget git \ - neovim tmux \ - exa fd-find ripgrep \ - openssh-server openssh-client \ - python3 python3-venv nodejs npm \ - podman \ - neofetch diff --git a/Scripts/fedora.sh b/Scripts/fedora.sh deleted file mode 100755 index 3fb5ff9..0000000 --- a/Scripts/fedora.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env bash - -sudo dnf install \ - util-linux-user tar \ - zsh \ - curl wget git \ - neovim tmux \ - exa bat fd-find ripgrep git-delta \ - openssh \ - golang python3 nodejs \ - podman \ - neofetch diff --git a/Scripts/misc.sh b/Scripts/misc.sh deleted file mode 100755 index c33243b..0000000 --- a/Scripts/misc.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env bash - -# https://github.com/ohmyzsh/ohmyzsh/ -sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" - -# https://github.com/romkatv/powerlevel10k#oh-my-zsh -git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k - -# https://github.com/junegunn/fzf#using-git -git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf -~/.fzf/install - -# https://github.com/junegunn/vim-plug -sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \ - https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' - -# https://golangci-lint.run/usage/install/#local-installation -curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.37.1 diff --git a/Scripts/projects.sh b/Scripts/projects.sh deleted file mode 100755 index 0690874..0000000 --- a/Scripts/projects.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash - -git clone https://github.com/haunt98/dotfiles.git ~/go/src/github.com/haunt98/dotfiles -git clone https://github.com/haunt98/til.git ~/go/src/github.com/haunt98/til -git clone https://github.com/haunt98/gitu.git ~/go/src/github.com/haunt98/gitu -git clone https://github.com/haunt98/changeloguru.git ~/go/src/github.com/haunt98/changeloguru -git clone https://github.com/haunt98/license.git ~/go/src/github.com/haunt98/license -git clone https://github.com/haunt98/converter.git ~/go/src/github.com/haunt98/converter -git clone https://github.com/haunt98/leetcode.git ~/go/src/github.com/haunt98/leetcode -git clone https://github.com/haunt98/advent-of-code.git ~/go/src/github.com/haunt98/advent-of-code