Contains all the dotfiles that I use in my development environment.
- git -
sudo apt install git
- zsh -
sudo apt install zsh
- starship -
curl -sS https://starship.rs/install.sh | sh
- neovim - See more
- fzf -
sudo apt install fzf
- ripgrep -
sudo apt install ripgrep
- lazygit -
brew install lazygit
- tmux -
sudo apt install tmux
- tpm -
git clone https://github.com/tmux-plugins/tpm ~/.config/tmux/plugins/tpm
- stow -
sudo apt install stow
stow .
cp ./zsh/.* ~/
cp ./git/.* ~/
tmux source-file ${XDG_CONFIG_HOME:-$HOME/.config}/tmux/tmux.conf
chsh -s /bin/zsh
In WSL, the locale is not updated by default. Ensure it's updated to use UTF-8 and English.
Run the below, then restart the terminal/tmux session.
sudo apt-get install language-pack-en language-pack-en-base manpages
sudo update-locale LANG=en_US.UTF8