-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
executable file
·82 lines (69 loc) · 2.13 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
75
76
77
78
79
80
81
82
#!/usr/bin/env bash
export DOTFILES_DIR
DOTFILES_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Config file locations for symlinks
mkdir -p ~/.config/nvim
mkdir -p ~/.config/kitty
mkdir -p ~/.config/alacritty
mkdir -p ~/.config/ptpython
# Symlinks
ln -sfv "$DOTFILES_DIR/git/gitconfig" ~/.gitconfig
ln -sfv "$DOTFILES_DIR/git/gitignore" ~/.gitignore
ln -sfv "$DOTFILES_DIR/tmux/tmux.conf" ~/.tmux.conf
ln -sfv "$DOTFILES_DIR/neovim/init.vim" ~/.config/nvim/init.vim
ln -sfv "$DOTFILES_DIR/zsh/zshrc" ~/.zshrc
ln -sfv "$DOTFILES_DIR/bash/bash_profile" ~/.bash_profile
ln -sfv "$DOTFILES_DIR/bash/bashrc" ~/.bashrc
ln -sfv "$DOTFILES_DIR/hg/hgrc" ~/.hgrc
ln -sfv "$DOTFILES_DIR/kitty/kitty.conf" ~/.config/kitty/kitty.conf
ln -sfv "$DOTFILES_DIR/alacritty/alacritty.yml" ~/.config/alacritty/alacritty.yml
ln -sfv "$DOTFILES_DIR/ptpython/config.py" ~/.config/ptpython/config.py
ln -sfv "$DOTFILES_DIR/wezterm.lua" ~/.wezterm.lua
# Packages
if [ "$(uname)" == "Linux" ]; then
echo "Installing packages for linux"
# Non classic installs
snap install docker
# The others
snap install code --classic
snap install pycharm-professional --classic
snap install datagrip --classic
snap install intellij-idea-ultimate --classic
snap install tmux --classic
snap install nvim --classic
fi
if [ "$(uname)" == "Darwin" ]; then
echo "Installing packages for mac"
echo "Install xcode utils"
xcode-select --install
echo "Install Homebrew"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew update
brew upgrade
echo "Installing brew apps"
apps=(
httpie
neovim/neovim/neovim
pyenv
awscli
tmux
azure-cli
)
brew install "${apps[@]}"
echo "Installing brew cask apps"
cask_apps=(
firefox
joplin
visual-studio-code
jetbrains-toolbox
wezterm
bruno
docker
plexamp
)
brew install "${cask_apps[@]}" --cask
echo "Setup SDKMan"
[ ! -d "$HOME/.sdkman" ] && curl -s "https://get.sdkman.io" | bash
export SDKMAN_DIR="$HOME/.sdkman"
[[ -s "$SDKMAN_DIR/bin/sdkman-init.sh" ]] && source "$SDKMAN_DIR/bin/sdkman-init.sh"
fi