1
0
mirror of https://github.com/DazAh/dotfiles synced 2026-05-22 02:25:48 +01:00

morefiles

This commit is contained in:
DazAh
2019-10-13 01:29:05 +01:00
parent a7723448a0
commit 58d232b8f5
1411 changed files with 64341 additions and 0 deletions
@@ -0,0 +1,16 @@
# `tig` plugin
This plugin adds some aliases for people who work with `tig` 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 |
@@ -0,0 +1,3 @@
alias tis='tig status'
alias til='tig log'
alias tib='tig blame -C'