-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinstall_script
More file actions
executable file
·64 lines (53 loc) · 1.5 KB
/
install_script
File metadata and controls
executable file
·64 lines (53 loc) · 1.5 KB
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
#!/bin/bash
DOTFILES_ROOT=$(pwd)
# stow dotfile packages
stow zshenv
stow zprofile
stow p10k-zsh
stow tmux
stow zshrc
stow vim
# stow config packages
stow aerospace
stow alacritty
stow ghostty
stow helix
stow yazi
stow nvim
# symlink bin folder
mkdir ~/bin
ln -s $DOTFILES_ROOT/bin/* ~/bin
# symlink espanso folder
ln -s $DOTFILES_ROOT/espanso ~/Library/Application\ Support/
#setup oh-my-zsh
git clone https://github.com/robbyrussell/oh-my-zsh ~/.oh-my-zsh
cd ~/.oh-my-zsh/custom/plugins
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git
#setup powerlevel 10k theme for zsh
cd ~/.oh-my-zsh/custom/
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/.oh-my-zsh/custom/themes/powerlevel10k
cd $DOTFILES_ROOT
curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh
brew install stow
brew install eza
brew install fzf
brew install bat
brew install zoxide
brew install --cask font-hack-nerd-font
brew install ghostty
brew install --cask alacritty
brew install helix
brew install --cask nikitabobko/tap/aerospace
brew install carapace
# yazi + dependencies
brew install yazi ffmpeg sevenzip jq poppler fd ripgrep fzf zoxide resvg imagemagick font-symbols-only-nerd-font
ya pack -a bennyyip/gruvbox-dark
brew install nvim
brew install lazygit
brew install tmux
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
#setup spacemacs
git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d
#setup submodules of this repository
git submodule init
git submodule update