Skip to content

Commit

Permalink
minor config changes
Browse files Browse the repository at this point in the history
  • Loading branch information
davay committed Jan 4, 2025
1 parent 71d577d commit fd90d8c
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
7 changes: 1 addition & 6 deletions .gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,7 @@
helper = store
[pull]
rebase = false
[filter "lfs"] # Whyyyy is this default config here
# Whyyyy is this default config here
# Whyyyy is this default config here
# Whyyyy is this default config here
# Whyyyy is this default config here
# Whyyyy is this default config here
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
Expand Down
2 changes: 1 addition & 1 deletion .zshrc_local
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ alias exrdeploy="(cexr && pack editxr.tgz --exclude=node_modules --exclude=dist
alias man="batman"
alias less="batpipe"
alias watch="batwatch"
alias diff="batdiff --staged"
alias diff="batdiff"
alias rg="batgrep"
alias skim="/Applications/Skim.app/Contents/MacOS/Skim"
present() {
Expand Down
9 changes: 8 additions & 1 deletion .zshrc_portable
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ alias status="git status"
alias pull="git pull"
alias push="git push"
alias clean="git clean -dfx"
alias reset="git reset --hard HEAD"
alias nuke="git clean -dfx && git reset --hard HEAD"
alias stashlist="git stash list"
alias stashshow="git stash show -p"
Expand Down Expand Up @@ -164,6 +163,14 @@ ammend() {
git commit --amend -m "$1"
}

reset() {
if [ $# -eq 0 ]; then
git reset --hard HEAD
else
git restore --source=HEAD "$@"
fi
}

# gen z alias
alias yikes="git reset --hard HEAD"
alias bigyikes="git clean -dfx && git reset --hard HEAD"
Expand Down
Binary file modified Library/Preferences/.GlobalPreferences.plist
Binary file not shown.
Binary file modified Library/Preferences/com.hegenberg.BetterTouchTool.plist
Binary file not shown.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,12 @@ brew install yadm && yadm clone https://github.com/davay/dotfiles.git

- Settings - Privacy & Security: Allow apps from anywhere

- Yabai + Skhd: Start Service
- Yabai + Skhd: Start service (they don't use brew services, do `yabai/skhd --start-service`)

- Skim: Set headless config to sync with nvim https://github.com/benbrastmckie/.config

- This may or may not be needed in the future: https://github.com/luckman212/screencapture-nag-remover

### 4. Where are hotkeys set

| App | Action | Hotkey |
Expand Down

0 comments on commit fd90d8c

Please sign in to comment.