├── .editorconfig ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── config.yml │ └── new-theme.md └── pull_request_template.md ├── CONTRIBUTING.md ├── LICENSE.md └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getomni/omni/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getomni/omni/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getomni/omni/HEAD/.github/ISSUE_TEMPLATE/new-theme.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getomni/omni/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getomni/omni/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getomni/omni/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getomni/omni/HEAD/README.md --------------------------------------------------------------------------------