My dotfiles for both Arch Linux and Windows
Go to file
2025-03-18 17:56:51 -05:00
.zfunc Updated zshrc 2025-03-06 14:41:46 -06:00
scripts New script added 2025-02-08 20:13:56 -06:00
windows Attempting to unbranch and having issues 2024-06-10 19:16:32 -05:00
.alias updates 2025-03-18 17:55:27 -05:00
.bashrc Attempting to unbranch and having issues 2024-06-10 19:16:32 -05:00
.gitconfig set vscode as difftool 2025-03-18 17:56:51 -05:00
.tmux.conf updates 2025-03-18 17:55:27 -05:00
.vimrc Attempting to unbranch and having issues 2024-06-10 19:16:32 -05:00
.zshrc Updated zshrc 2025-03-06 14:41:46 -06:00
README.md removed instructions about branches 2024-06-10 19:32:03 -05:00

dotfiles

My dotfiles for both Arch Linux and Windows

Usage 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

Usage on Windows

Checking out the repo

PowerShell -NoProfile -ExecutionPolicy Bypass
git clone --bare https://git.theflyingfool.com/theflyingfool/dotfiles.git $HOME/.dot
if (!(Test-Path -Path $PROFILE)) {
    # Create the profile
    New-Item -Type File -Path $PROFILE -Force
}
"`nfunction dot { & git --git-dir=`"$HOME/.dot/`" --work-tree=`"$HOME`" @args }" | Out-File -Append $PROFILE
. $PROFILE
dot checkout
dot config --local status.showUntrackedFiles no
"`n. `"$HOME/windows/Microsoft.PowerShell_profile.ps1`"" | Out-File -Append $PROFILE