diff options
| author | navewindre <boneyaard@gmail.com> | 2025-07-13 06:42:05 +0200 |
|---|---|---|
| committer | navewindre <boneyaard@gmail.com> | 2025-07-13 06:42:05 +0200 |
| commit | 02f14a9cb152561a5e44062aac79f3b700403b40 (patch) | |
| tree | 2db8ebda3b7f6f8777783aeb5c60018e6e1359d8 /home/.oh-my-zsh/plugins/tig | |
| parent | cbbdeb2f6b40a102a829f0c47cff052937231f00 (diff) | |
omz
Diffstat (limited to 'home/.oh-my-zsh/plugins/tig')
| -rw-r--r-- | home/.oh-my-zsh/plugins/tig/README.md | 16 | ||||
| -rw-r--r-- | home/.oh-my-zsh/plugins/tig/tig.plugin.zsh | 5 |
2 files changed, 21 insertions, 0 deletions
diff --git a/home/.oh-my-zsh/plugins/tig/README.md b/home/.oh-my-zsh/plugins/tig/README.md new file mode 100644 index 0000000..3323fd0 --- /dev/null +++ b/home/.oh-my-zsh/plugins/tig/README.md @@ -0,0 +1,16 @@ +# `tig` plugin + +This plugin adds some aliases for people who work with [`tig`](https://jonas.github.io/tig/) (text-mode interface for Git) in +a regular basis. To use it, add `tig` to your plugins array: + +```zsh +plugins=(... tig) +``` + +## Features + +| Alias | Command | Description | +|-------|----------------|-------------------------------------------------| +| `tis` | `tig status` | Show git status | +| `til` | `tig log` | Show git log | +| `tib` | `tig blame -C` | `git-blame` a file detecting copies and renames | diff --git a/home/.oh-my-zsh/plugins/tig/tig.plugin.zsh b/home/.oh-my-zsh/plugins/tig/tig.plugin.zsh new file mode 100644 index 0000000..5b7d255 --- /dev/null +++ b/home/.oh-my-zsh/plugins/tig/tig.plugin.zsh @@ -0,0 +1,5 @@ +alias tis='tig status' +alias til='tig log' +alias tib='tig blame -C' +alias tif='tig reflog' +alias tia='tig --all' |
