├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── ask_a_question.md │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── linters │ └── .markdown-lint.yml └── workflows │ └── CI.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── completions └── scuba.fish ├── conf.d └── _scuba_events.fish ├── docs └── creating_plugins.md └── functions ├── _scuba_sub_install.fish ├── _scuba_sub_list.fish ├── _scuba_sub_remove.fish ├── _scuba_sub_update.fish └── scuba.fish /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @IlanCosman -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ask_a_question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/.github/ISSUE_TEMPLATE/ask_a_question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | --- 2 | blank_issues_enabled: false 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/.github/linters/.markdown-lint.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/README.md -------------------------------------------------------------------------------- /completions/scuba.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/completions/scuba.fish -------------------------------------------------------------------------------- /conf.d/_scuba_events.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/conf.d/_scuba_events.fish -------------------------------------------------------------------------------- /docs/creating_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/docs/creating_plugins.md -------------------------------------------------------------------------------- /functions/_scuba_sub_install.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/functions/_scuba_sub_install.fish -------------------------------------------------------------------------------- /functions/_scuba_sub_list.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/functions/_scuba_sub_list.fish -------------------------------------------------------------------------------- /functions/_scuba_sub_remove.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/functions/_scuba_sub_remove.fish -------------------------------------------------------------------------------- /functions/_scuba_sub_update.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/functions/_scuba_sub_update.fish -------------------------------------------------------------------------------- /functions/scuba.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IlanCosman/scuba/HEAD/functions/scuba.fish --------------------------------------------------------------------------------