my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
632 B

3 years ago
  1. # `tig` plugin
  2. This plugin adds some aliases for people who work with [`tig`](https://jonas.github.io/tig/) (text-mode interface for Git) in
  3. a regular basis. To use it, add `tig` to your plugins array:
  4. ```zsh
  5. plugins=(... tig)
  6. ```
  7. ## Features
  8. | Alias | Command | Description |
  9. |-------|----------------|-------------------------------------------------|
  10. | `tis` | `tig status` | Show git status |
  11. | `til` | `tig log` | Show git log |
  12. | `tib` | `tig blame -C` | `git-blame` a file detecting copies and renames |