├── .gitattributes ├── .github ├── renovate.json ├── stale.yml └── workflows │ └── ci.yml ├── .gitignore ├── .tokeignore ├── .versionrc.json ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images ├── icon.png └── icon.svg ├── package.json ├── pnpm-lock.yaml └── snippets └── snippets.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabertazimi/LaTeX-snippets/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabertazimi/LaTeX-snippets/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabertazimi/LaTeX-snippets/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabertazimi/LaTeX-snippets/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabertazimi/LaTeX-snippets/HEAD/.gitignore -------------------------------------------------------------------------------- /.tokeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabertazimi/LaTeX-snippets/HEAD/.tokeignore -------------------------------------------------------------------------------- /.versionrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabertazimi/LaTeX-snippets/HEAD/.versionrc.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabertazimi/LaTeX-snippets/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabertazimi/LaTeX-snippets/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabertazimi/LaTeX-snippets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabertazimi/LaTeX-snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabertazimi/LaTeX-snippets/HEAD/README.md -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabertazimi/LaTeX-snippets/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabertazimi/LaTeX-snippets/HEAD/images/icon.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabertazimi/LaTeX-snippets/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabertazimi/LaTeX-snippets/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /snippets/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabertazimi/LaTeX-snippets/HEAD/snippets/snippets.json --------------------------------------------------------------------------------