forked from KrisMT/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
39 lines (28 loc) · 1.02 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
#!/usr/bin/bash
## Change theme to tango && dark
#########################
### Install ZSH
sudo apt-get install zsh -y
#########################
### Git and configuration
sudo apt-get install git -y
cp -rf gitconfig ~/.gitconfig
######################
### Install oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
######################
### Install syntax highlight
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
######################
### Install auto suggestions
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
######################
### TMUX
sudo apt-get install tmux -y
cp -rf tmux.conf ~/.tmux.conf
######################
### Star ship
curl -sS https://starship.rs/install.sh | sh
mkdir -p ~/.config && touch ~/.config/starship.toml
cp -rf starship.toml ~/.config/starship.toml
cp -rf zshrc ~/.zshrc