-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.sh
More file actions
executable file
·29 lines (23 loc) · 968 Bytes
/
script.sh
File metadata and controls
executable file
·29 lines (23 loc) · 968 Bytes
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
#!/bin/bash
# Installing "Source Code Pro" font family
sudo cp -r source-code-pro/ /usr/share/fonts/truetype/
# Updating Apt Cache
sudo apt update
# ZSH Setup
sudo apt install -y zsh
chsh -s $(which zsh)
# Oh My ZSH Setup
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
sudo cp -r meslo-fonts/ /usr/share/fonts/truetype/
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
cp -f .zshrc ~
cp -f .p10k.zsh ~
# Alacritty Setup
sudo apt install -y alacritty
mkdir -p $HOME/.config/alacritty
cp alacritty.yml $HOME/.config/alacritty
# tmux Setup
sudo apt install -y tmux
cp -f .tmux.conf ~