Install alacritty and JetBrainsMono
font from nerd-fonts
Install zsh.
To change the location of zsh config files run one of these
# for linux
echo 'export ZDOTDIR="$HOME/.config/zsh"' > /etc/zsh/zshenv
# for macos
echo 'export ZDOTDIR="$HOME/.config/zsh"' > /etc/zshenv
Install antigen
curl -L git.io/antigen > antigen.zsh
# or use git.io/antigen-nightly for the latest version
Install go as it is required for building ggman
Create $HOME/git
directory ($GGROOT
is set to here) and install ggman
git clone https://github.com/tkw1536/ggman $HOME/git/ggman
cd $HOME/git/ggman
make
make install
Install pyenv to $XDG_DATA_HOME/.pyenv
(this is already taken care for in .zshenv
) using pyenv-installer and install build-dependencies
Install pyenv-default-packages as pyenv plugin and symlink .pyenv/default-packages
to $PYENV_ROOT
git clone https://github.com/jawshooah/pyenv-default-packages.git $(pyenv root)/plugins/pyenv-default-packages
ln -s "$XDG_CONFIG_HOME/.pyenv/default-packages" "$(pyenv root)/default-packages"
Install neovim and follow README.md
in git.janezic.dev/janezicmatej/nvim