-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.sh
74 lines (50 loc) · 1.89 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# ? Core
apt -y update
apt install -y curl cmake
# ? Install Git
apt install -y git
# ? Install Zsh
apt install -y zsh
chsh -s $(which zsh)
# ? Oh My Zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# ? Spaceship Prompt | Spaceship docs
git clone https://github.com/denysdovhan/spaceship-prompt.git "$ZSH_CUSTOM/themes/spaceship-prompt"
ln -s "$ZSH_CUSTOM/themes/spaceship-prompt/spaceship.zsh-theme" "$ZSH_CUSTOM/themes/spaceship.zsh-theme"
# ? Zsh Autosuggestions
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
echo "bindkey '^ ' autosuggest-accept" >> $ZSH_CUSTOM/autosuggestion-settings.zsh
source $ZSH_CUSTOM/autosuggestion-settings.zsh
# ? Zsh Syntax Highlighting
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
# ? Install fzf
apt install fzf
# ? Configure .zshrc
curl -o ~/.zshrc https://github.com/TheYkk/devkit/raw/master/.zshrc
source ~/.zshrc
# ? Install Docker
curl https://get.docker.com | sh
usermod -aG docker $(whoami)
curl -L "https://github.com/docker/compose/releases/download/1.28.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
# ? Install Snap
apt install -y snapd
snap install code --classic
# ? Install Kubectl
snap install kubectl --classic
# ? Install Kubectx
apt install -y kubectx
# ? Install Kube-alias
curl https://raw.githubusercontent.com/ahmetb/kubectl-alias/master/.kubectl_aliases > ~/.kubectl_aliases
# ? Install Helm
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
# ? Install Git flow
apt install git-flow
# ? Install Tilix
apt install -y tilix
# ? Install fd-find
apt install fd-find
apt install flameshot
apt install tmux
apt install vim
apt install bat
{"mode":"full","isActive":false}