forked from ohmyzsh/ohmyzsh
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
* upstream/master: (332 commits) fix(clipboard): load clipboard on usage feat(alias-finder): add cheaper option and apply zstyle options (ohmyzsh#11773) fix(git): some aliases under non-english LANG (ohmyzsh#11855) refactor(git): sort git aliases alphabetically (ohmyzsh#9743) fix(extract): extraction to directory for single-file .gz (ohmyzsh#11852) refactor(init): rename variable (ohmyzsh#11851) fix(colored-man-pages): add env GROFF_NO_SGR=1 (ohmyzsh#11831) feat(terraform): add terraform version prompt (ohmyzsh#11845) docs(aliases): replace screenshot chore(gitignore): use new API endpoint from TopTal (ohmyzsh#11835) feat(agnoster): add git tag to prompt (ohmyzsh#8417) feat(fino-time): add conda environment (ohmyzsh#11785) fix(aliases): rename acs to als in script help fix(per-directory-history): ^G also in vi mode (ohmyzsh#11808) fix(michelebologna): use blue instead of white (ohmyzsh#11810) feat(docker): add `legacy-completion` option feat(tig): add two new aliases (ohmyzsh#11090) fix(nvm): remove nvm not found verbose message fix(aliases)!: rename `acs` to `als` fix(ubuntu)!: rename `acse` alias to `acs` ...
- Loading branch information
Showing
256 changed files
with
6,766 additions
and
2,787 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
# Plugin owners | ||
plugins/archlinux/ @ratijas | ||
plugins/aws/ @maksyms | ||
plugins/genpass/ @atoponce | ||
plugins/git-lfs/ @hellovietduc | ||
plugins/gitfast/ @felipec | ||
plugins/react-native @esthor | ||
plugins/sdk/ @rgoldberg | ||
plugins/shell-proxy/ @septs | ||
plugins/universalarchive/ @Konfekt | ||
plugins/wp-cli/ @joshmedeski | ||
plugins/zoxide/ @ajeetdsouza | ||
plugins/starship/ @axieax | ||
plugins/dbt/ @msempere |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Test and Deploy installer | ||
on: | ||
workflow_dispatch: {} | ||
push: | ||
paths: | ||
- tools/install.sh | ||
- .github/workflows/installer | ||
- .github/workflows/installer.yml | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: false | ||
|
||
permissions: | ||
contents: read # to checkout | ||
|
||
jobs: | ||
test: | ||
name: Test installer | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
- macos-latest | ||
steps: | ||
- name: Set up git repository | ||
uses: actions/checkout@v3 | ||
- name: Install zsh | ||
if: runner.os == 'Linux' | ||
run: sudo apt-get update; sudo apt-get install zsh | ||
- name: Test installer | ||
run: sh ./tools/install.sh | ||
|
||
deploy: | ||
name: Deploy installer in install.ohmyz.sh | ||
if: github.ref == 'refs/heads/master' | ||
runs-on: ubuntu-latest | ||
environment: vercel | ||
needs: | ||
- test | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Install Vercel CLI | ||
run: npm install -g vercel | ||
- name: Setup project and deploy | ||
env: | ||
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | ||
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | ||
run: | | ||
cp tools/install.sh .github/workflows/installer/install.sh | ||
cd .github/workflows/installer | ||
vc link --yes -t ${{ secrets.VERCEL_TOKEN }} | ||
vc deploy --prod -t ${{ secrets.VERCEL_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
install.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/* | ||
!/install.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"headers": [ | ||
{ | ||
"source": "/((?!favicon.ico).*)", | ||
"headers": [{ "key": "Content-Type", "value": "text/plain" }] | ||
} | ||
], | ||
"rewrites": [ | ||
{ | ||
"source": "/((?!favicon.ico|install.sh).*)", | ||
"destination": "/install.sh" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,7 @@ cache/ | |
log/ | ||
*.swp | ||
.DS_Store | ||
|
||
# editor configs | ||
.vscode | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"printWidth": 110, | ||
"proseWrap": "always" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.