my dotfiles
Initially inspired/grafted from jessfraz/dotfiles, and then updated by way of LARBS and the associated dotfiles.
About the same as Luke Rice's setup, but with fish as the default shell and my vim setup.
- Run the LARBS install script.
- Git clone this repo into ~/dotfiles.
- Git clone my vim setup into .vim and follow the setup instructions there.
sudo pacman -S fish htop bat ctags emacs
rm -rf ~/.local
andmv ~/dotfiles/.local ~/.local
rm -rf ~/.config
andmv ~/dotfiles/.config ~/.config
mv ~/dotfiles/.gitconfig ~/.gitconfig
mv ~/dotfiles/.jupyter ~/.jupyter
mv ~/dotfiles/.fonts ~/.fonts
these are deleted when replacing .config
above, so need to reclone:
for REPO in dwm,dmenu,dwmblocks,st
do
git clone https://github.com/lukesmithxyz/$REPO.git ~/.local/src/$REPO
cp ~/dotfiles/.local/$REPO.h ~/.local/src/$REPO
cd ~/.local/src/$REPO
sudo make install
cd -
done