mirror of
https://github.com/mitchell/dotfiles.git
synced 2025-06-19 12:45:34 +00:00
- Neovim: - Migrate from vim-plug to lazy.nvim. - Refactor config (`init.lua`, `config.vim`). - Replace Coq with blink.cmp, add CodeCompanion. - Fish: - Add aliases (`cl`, `ai`), env vars (`ANDROID_HOME`, `PYENV`). - Update keybindings and conditional tool initialization (starship, zoxide, fzf, pyenv). - Refine ASDF/Homebrew setup. - Git: Add aliases (`rs`, `rss`, `ap`). - Other: Update SKHD bindings and WezTerm path/settings.
54 lines
1 KiB
INI
54 lines
1 KiB
INI
[alias]
|
|
co = checkout
|
|
rs = restore
|
|
rss = restore --staged
|
|
br = branch
|
|
cm = commit
|
|
st = status
|
|
rb = rebase
|
|
pfwl = push --force-with-lease
|
|
llog = log --date=local
|
|
flog = log --pretty=fuller --decorate
|
|
lol = log --graph --decorate --oneline
|
|
lola = log --graph --decorate --oneline --all
|
|
blog = log origin/master... --left-right
|
|
ds = diff --staged
|
|
amend = commit --amend -C HEAD
|
|
fixup = commit --fixup
|
|
squash = commit --squash
|
|
unstage = reset HEAD
|
|
rum = rebase master@{u}
|
|
puff = pull --ff-only
|
|
merff = merge --ff-only
|
|
fa = fetch --all
|
|
pa = push --all
|
|
ap = add --patch
|
|
|
|
[core]
|
|
editor = nvim
|
|
pager = delta
|
|
|
|
[color]
|
|
ui = auto
|
|
branch = auto
|
|
interactive = auto
|
|
status = auto
|
|
|
|
[push]
|
|
default = simple
|
|
|
|
[pull]
|
|
rebase = true
|
|
|
|
[interactive]
|
|
diffFilter = delta --color-only
|
|
|
|
[delta]
|
|
features = side-by-side line-numbers decorations
|
|
whitespace-error-style = 22 reverse
|
|
|
|
[delta "decorations"]
|
|
commit-decoration-style = bold yellow box ul
|
|
file-style = bold yellow ul
|
|
file-decoration-style = none
|