├── .editorconfig ├── .github ├── CODEOWNERS ├── LICENSE ├── dependabot.yml └── workflows │ ├── copilot-setup-steps.yml │ └── trunk-check.yaml ├── .gitignore ├── .gitmodules ├── .trunk ├── .gitignore ├── configs │ ├── .markdownlint.yaml │ ├── .shellcheckrc │ └── .yamllint.yaml └── trunk.yaml ├── bin ├── diff-so-fancy ├── fancy-diff └── git-dsf ├── docs ├── README.md └── img │ └── zsh-diff-so-fancy.gif └── zsh-diff-so-fancy.plugin.zsh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsh-diff-so-fancy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @ss-o 2 | -------------------------------------------------------------------------------- /.github/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsh-diff-so-fancy/HEAD/.github/LICENSE -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsh-diff-so-fancy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsh-diff-so-fancy/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.github/workflows/trunk-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsh-diff-so-fancy/HEAD/.github/workflows/trunk-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsh-diff-so-fancy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsh-diff-so-fancy/HEAD/.gitmodules -------------------------------------------------------------------------------- /.trunk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsh-diff-so-fancy/HEAD/.trunk/.gitignore -------------------------------------------------------------------------------- /.trunk/configs/.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsh-diff-so-fancy/HEAD/.trunk/configs/.markdownlint.yaml -------------------------------------------------------------------------------- /.trunk/configs/.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsh-diff-so-fancy/HEAD/.trunk/configs/.shellcheckrc -------------------------------------------------------------------------------- /.trunk/configs/.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsh-diff-so-fancy/HEAD/.trunk/configs/.yamllint.yaml -------------------------------------------------------------------------------- /.trunk/trunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsh-diff-so-fancy/HEAD/.trunk/trunk.yaml -------------------------------------------------------------------------------- /bin/diff-so-fancy: -------------------------------------------------------------------------------- 1 | ../diff-so-fancy/diff-so-fancy -------------------------------------------------------------------------------- /bin/fancy-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsh-diff-so-fancy/HEAD/bin/fancy-diff -------------------------------------------------------------------------------- /bin/git-dsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsh-diff-so-fancy/HEAD/bin/git-dsf -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsh-diff-so-fancy/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/img/zsh-diff-so-fancy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsh-diff-so-fancy/HEAD/docs/img/zsh-diff-so-fancy.gif -------------------------------------------------------------------------------- /zsh-diff-so-fancy.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsh-diff-so-fancy/HEAD/zsh-diff-so-fancy.plugin.zsh --------------------------------------------------------------------------------