- Install Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Install all dependencies from the
Brewfile
through Homebrew Bundlebrew update \ && brew upgrade \ && curl -fsSL https://github.com/jackblackevo/dotfiles/raw/main/macOS/Brewfile | brew bundle --file=- \ && brew cleanup
- Configure Alacritty
curl -fsSLO --create-dirs --output-dir ~/.config/alacritty/ https://github.com/jackblackevo/dotfiles/raw/main/macOS/.config/alacritty/alacritty.toml
- Copy
.zshenv
and.zshrc
file to home directorycurl -fsSLO --output-dir ~/ https://github.com/jackblackevo/dotfiles/raw/main/macOS/.zshenv \ && curl -fsSLO --output-dir ~/ https://github.com/jackblackevo/dotfiles/raw/main/macOS/.zshrc
- Copy
.zimrc
file (for Zim) to home directorycurl -fsSLO --output-dir ~/ https://github.com/jackblackevo/dotfiles/raw/main/macOS/.zimrc
- Copy
.p10k.zsh
file (for Powerlevel10k) to home directorycurl -fsSLO --output-dir ~/ https://github.com/jackblackevo/dotfiles/raw/main/.p10k.zsh
- Reload Zsh configuration
zsh
- Copy
.tmux.conf
file to home directorycurl -fsSLO --output-dir ~/ https://github.com/jackblackevo/dotfiles/raw/main/.tmux.conf
- Copy
.tigrc
file to home directorycurl -fsSLO --output-dir ~/ https://github.com/jackblackevo/dotfiles/raw/main/macOS/.tigrc
- Install AstroNvim (use unattended and isolated installation)
See: AstroNvim configurationgit clone https://github.com/jackblackevo/astronvim_config.git ~/.config/astronvim \ && NVIM_APPNAME=astronvim nvim --headless +q
- Install packages
sudo apt update \ && sudo apt upgrade -y \ && curl -fsSL https://github.com/jackblackevo/dotfiles/raw/main/Ubuntu/pkgs | xargs sudo apt install -y \ && sudo apt clean \ && curl -fsSL https://github.com/jackblackevo/dotfiles/raw/main/Ubuntu/win-pkgs | xargs winget.exe install
- Copy
.zshenv
and.zshrc
file to home directorycurl -fsSLO --output-dir ~/ https://github.com/jackblackevo/dotfiles/raw/main/Ubuntu/.zshenv \ && curl -fsSLO --output-dir ~/ https://github.com/jackblackevo/dotfiles/raw/main/Ubuntu/.zshrc
- Copy
.zimrc
file (for Zim) to home directorycurl -fsSLO --output-dir ~/ https://github.com/jackblackevo/dotfiles/raw/main/Ubuntu/.zimrc
- Copy
.p10k.zsh
file (for Powerlevel10k) to home directorycurl -fsSLO --output-dir ~/ https://github.com/jackblackevo/dotfiles/raw/main/.p10k.zsh
- Reload Zsh configuration
zsh
- Download & Install Hack Nerd Font
curl -fsSLO --output-dir /mnt/c/temp/ https://github.com/ryanoasis/nerd-fonts/raw/master/patched-fonts/Hack/Regular/HackNerdFontMono-Regular.ttf \ && explorer.exe "c:\temp"
- Configure Windows Terminal
- Set Zsh as default shell
chsh -s $(which zsh)
- Copy
.tmux.conf
file to home directorycurl -fsSLO --output-dir ~/ https://github.com/jackblackevo/dotfiles/raw/main/.tmux.conf
- Make diff-highlight executable
sudo chmod +x $(git --exec-path)/../../share/doc/git/contrib/diff-highlight/diff-highlight
- Copy
.tigrc
file to home directorycurl -fsSLO --output-dir ~/ https://github.com/jackblackevo/dotfiles/raw/main/Ubuntu/.tigrc
- Install Neovim stable version (release build)
curl -fsSL --create-dirs --output ~/.local/bin/nvim.appimage https://github.com/neovim/neovim/releases/download/stable/nvim-linux-x86_64.appimage && chmod u+x ~/.local/bin/nvim.appimage && ln -sf ~/.local/bin/nvim.appimage ~/.local/bin/nvim
- Install AstroNvim (use unattended and isolated installation)
See: AstroNvim configurationgit clone https://github.com/jackblackevo/astronvim_config.git ~/.config/astronvim \ && NVIM_APPNAME=astronvim nvim --headless +q