My dotfiles for both Arch Linux and Windows
Go to file
2024-06-09 17:41:09 -05:00
.alias Added all files from my old github repo for dot 2024-06-09 17:31:00 -05:00
.bashrc Added all files from my old github repo for dot 2024-06-09 17:31:00 -05:00
.tmux.conf Added all files from my old github repo for dot 2024-06-09 17:31:00 -05:00
.vimrc Added all files from my old github repo for dot 2024-06-09 17:31:00 -05:00
.zshrc Added all files from my old github repo for dot 2024-06-09 17:31:00 -05:00
README.md Update README.md 2024-06-09 17:41:09 -05:00

dotfiles

My dotfiles for both Arch Linux and Windows

Useage on Linux

Checking out the repo

git clone --bare gitea@git.theflyingfool.com:theflyingfool/dotfiles.git $HOME/.dot
alias dot='/usr/bin/git --git-dir="$HOME/.dot/" --work-tree="$HOME"'
dot checkout
dot config --local status.showUntrackedFiles no
source ~/.zshrc

If there are conflicts:

mkdir -p .dot-backup && \
dot checkout 2>&1 | egrep "\s+\." | awk {'print $1'} | \
xargs -I{} mv {} .dot-backup/{}
dot checkout

Managing dotfiles

Adding or Modifying files

dot add .zshrc
dot commit -m "Update .zshrc"
dot push