-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_ubuntu.sh
35 lines (26 loc) · 1.05 KB
/
install_ubuntu.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
###############################################################################
# Configs #
###############################################################################
# bash
ln -svi ~/dotfiles/bash/.bash_profile ~
# source bash, so the new profile can be used right away
source ~/.bash_profile
# git
bash ~/dotfiles/git/set_gitconfig.sh
# ubuntu defaults
source ~/dotfiles/ubuntu/ubuntudefaults.sh
###############################################################################
# Installations #
###############################################################################
# fnm (faster node version manager)
curl -fsSL https://fnm.vercel.app/install | bash
# todo: automatically add to path
# Git
sudo apt-get install git-all
# install general shell utilities
source ~/dotfiles/shell/install.sh
sudo apt install bat
# zsh
source ~/dotfiles/ubuntu/zsh.sh
source ~/dotfiles/zsh/install_oh-my-zsh.sh
ln -svi ~/dotfiles/zsh/.zshrc ~