chezmoi init
This commit is contained in:
commit
530d6d7195
1176 changed files with 111325 additions and 0 deletions
92
dot_oh-my-zsh/plugins/react-native/README.md
Normal file
92
dot_oh-my-zsh/plugins/react-native/README.md
Normal file
|
@ -0,0 +1,92 @@
|
|||
# React Native plugin
|
||||
|
||||
This plugin adds completion for [`react-native`](https://facebook.github.io/react-native/).
|
||||
It also defines a few [aliases](#aliases) for the commands more frequently used.
|
||||
|
||||
To enable, add `react-native` to your `plugins` array in your zshrc file:
|
||||
|
||||
```zsh
|
||||
plugins=(... react-native)
|
||||
```
|
||||
|
||||
## Aliases
|
||||
|
||||
| Alias | React Native command |
|
||||
| :-------------- | :------------------------------------------------------------------------- |
|
||||
| **rn** | `react-native` |
|
||||
| **rns** | `react-native start` |
|
||||
| **rnlink** | `react-native link` |
|
||||
| _Logging_ | |
|
||||
| **rnland** | `react-native log-android` |
|
||||
| **rnlios** | `react-native log-ios` |
|
||||
| _App Testing_ | |
|
||||
| **rnand** | `react-native run-android` |
|
||||
| **rnios** | `react-native run-ios` |
|
||||
| _iPhone_ | |
|
||||
| **rnios4s** | `react-native run-ios --simulator "iPhone 4s"` |
|
||||
| **rnios5** | `react-native run-ios --simulator "iPhone 5"` |
|
||||
| **rnios5s** | `react-native run-ios --simulator "iPhone 5s"` |
|
||||
| **rnios6** | `react-native run-ios --simulator "iPhone 6"` |
|
||||
| **rnios6s** | `react-native run-ios --simulator "iPhone 6s"` |
|
||||
| **rnios6p** | `react-native run-ios --simulator "iPhone 6 Plus"` |
|
||||
| **rnios6sp** | `react-native run-ios --simulator "iPhone 6s Plus"` |
|
||||
| **rnios7** | `react-native run-ios --simulator "iPhone 7"` |
|
||||
| **rnios7p** | `react-native run-ios --simulator "iPhone 7 Plus"` |
|
||||
| **rnios8** | `react-native run-ios --simulator "iPhone 8"` |
|
||||
| **rnios8p** | `react-native run-ios --simulator "iPhone 8 Plus"` |
|
||||
| **rniosse** | `react-native run-ios --simulator "iPhone SE"` |
|
||||
| **rniosx** | `react-native run-ios --simulator "iPhone X"` |
|
||||
| **rniosxs** | `react-native run-ios --simulator "iPhone Xs"` |
|
||||
| **rniosxsm** | `react-native run-ios --simulator "iPhone Xs Max"` |
|
||||
| **rniosxr** | `react-native run-ios --simulator "iPhone Xʀ"` |
|
||||
| **rnios11** | `react-native run-ios --simulator "iPhone 11"` |
|
||||
| **rnios11p** | `react-native run-ios --simulator "iPhone 11 Pro"` |
|
||||
| **rnios11pm** | `react-native run-ios --simulator "iPhone 11 Pro Max"` |
|
||||
| **rnios12** | `react-native run-ios --simulator "iPhone 12"` |
|
||||
| **rnios12m** | `react-native run-ios --simulator "iPhone 12 mini"` |
|
||||
| **rnios12p** | `react-native run-ios --simulator "iPhone 12 Pro"` |
|
||||
| **rnios12pm** | `react-native run-ios --simulator "iPhone 12 Pro Max"` |
|
||||
| **rnios13** | `react-native run-ios --simulator "iPhone 13"` |
|
||||
| **rnios13m** | `react-native run-ios --simulator "iPhone 13 mini"` |
|
||||
| **rnios13p** | `react-native run-ios --simulator "iPhone 13 Pro"` |
|
||||
| **rnios13pm** | `react-native run-ios --simulator "iPhone 13 Pro Max"` |
|
||||
| **rnios14** | `react-native run-ios --simulator "iPhone 14"` |
|
||||
| **rnios14pl** | `react-native run-ios --simulator "iPhone 14 Plus"` |
|
||||
| **rnios14p** | `react-native run-ios --simulator "iPhone 14 Pro"` |
|
||||
| **rnios14pm** | `react-native run-ios --simulator "iPhone 14 Pro Max"` |
|
||||
| **rnios15** | `react-native run-ios --simulator "iPhone 15"` |
|
||||
| **rnios15pl** | `react-native run-ios --simulator "iPhone 15 Plus"` |
|
||||
| **rnios15p** | `react-native run-ios --simulator "iPhone 15 Pro"` |
|
||||
| **rnios15pm** | `react-native run-ios --simulator "iPhone 15 Pro Max"` |
|
||||
| _iPad_ | |
|
||||
| **rnipad2** | `react-native run-ios --simulator "iPad 2"` |
|
||||
| **rnipad5** | `react-native run-ios --simulator "iPad (5th generation)"` |
|
||||
| **rnipad6** | `react-native run-ios --simulator "iPad (6th generation)"` |
|
||||
| **rnipadr** | `react-native run-ios --simulator "iPad Retina"` |
|
||||
| **rnipada** | `react-native run-ios --simulator "iPad Air"` |
|
||||
| **rnipada2** | `react-native run-ios --simulator "iPad Air 2"` |
|
||||
| **rnipada3** | `react-native run-ios --simulator "iPad Air (3rd generation)"` |
|
||||
| **rnipadm2** | `react-native run-ios --simulator "iPad mini 2"` |
|
||||
| **rnipadm3** | `react-native run-ios --simulator "iPad mini 3"` |
|
||||
| **rnipadm4** | `react-native run-ios --simulator "iPad mini 4"` |
|
||||
| **rnipadm5** | `react-native run-ios --simulator "iPad mini (5th generation)"` |
|
||||
| **rnipadp9** | `react-native run-ios --simulator "iPad Pro (9.7-inch)"` |
|
||||
| **rnipadp12** | `react-native run-ios --simulator "iPad Pro (12.9-inch)"` |
|
||||
| **rnipadp122** | `react-native run-ios --simulator "iPad Pro (12.9-inch) (2nd generation)"` |
|
||||
| **rnipadp10** | `react-native run-ios --simulator "iPad Pro (10.5-inch)"` |
|
||||
| **rnipad11** | `react-native run-ios --simulator "iPad Pro (11-inch)"` |
|
||||
| **rnipad123** | `react-native run-ios --simulator "iPad Pro (12.9-inch) (3rd generation)"` |
|
||||
| _Apple TV_ | |
|
||||
| **rnatv** | `react-native run-ios --simulator "Apple TV"` |
|
||||
| **rnatv4k** | `react-native run-ios --simulator "Apple TV 4K"` |
|
||||
| **rnatv4k1080** | `react-native run-ios --simulator "Apple TV 4K (at 1080p)"` |
|
||||
| **rnipad123** | `react-native run-ios --simulator "iPad Pro (12.9-inch) (3rd generation)"` |
|
||||
| _Apple Watch_ | |
|
||||
| **rnaw38** | `react-native run-ios --simulator "Apple Watch - 38mm"` |
|
||||
| **rnaw42** | `react-native run-ios --simulator "Apple Watch - 42mm"` |
|
||||
| **rnaws238** | `react-native run-ios --simulator "Apple Watch Series 2 - 38mm"` |
|
||||
| **rnaws242** | `react-native run-ios --simulator "Apple Watch Series 2 - 42mm"` |
|
||||
| **rnaws338** | `react-native run-ios --simulator "Apple Watch Series 3 - 38mm"` |
|
||||
| **rnaws342** | `react-native run-ios --simulator "Apple Watch Series 3 - 42mm"` |
|
||||
| **rnaws440** | `react-native run-ios --simulator "Apple Watch Series 4 - 40mm"` |
|
||||
| **rnaws444** | `react-native run-ios --simulator "Apple Watch Series 4 - 44mm"` |
|
32
dot_oh-my-zsh/plugins/react-native/_react-native
Normal file
32
dot_oh-my-zsh/plugins/react-native/_react-native
Normal file
|
@ -0,0 +1,32 @@
|
|||
#compdef react-native
|
||||
#autoload
|
||||
|
||||
local -a _1st_arguments
|
||||
_1st_arguments=(
|
||||
'init:<ProjectName> generates a new project and installs its dependencies'
|
||||
'android:creates an empty android project'
|
||||
'start:starts the webserver'
|
||||
'run-ios:builds your app and starts it on iOS simulator'
|
||||
'run-android:builds your app and starts it on a connected Android emulator or device'
|
||||
'new-library:generates a native library bridge'
|
||||
'bundle:builds the javascript bundle for offline use'
|
||||
'unbundle:builds javascript as "unbundle" for offline use'
|
||||
'link:[options] <packageName> links all native dependencies'
|
||||
'unlink:[options] <packageName> unlink native dependency'
|
||||
'install:[options] <packageName> install and link native dependencies'
|
||||
'uninstall:[options] <packageName> uninstall and unlink native dependencies'
|
||||
"upgrade:upgrade your app's template files to the latest version; run this after updating the react-native version in your package.json and running npm install"
|
||||
'log-android:starts adb logcat'
|
||||
'log-ios:starts iOS device syslog tail'
|
||||
)
|
||||
|
||||
|
||||
_arguments \
|
||||
'(--version)--version[show version]' \
|
||||
'(--help)--help[show help]' \
|
||||
'*:: :->subcmds' && return 0
|
||||
|
||||
if (( CURRENT == 1 )); then
|
||||
_describe -t commands "react-native subcommand" _1st_arguments
|
||||
return
|
||||
fi
|
79
dot_oh-my-zsh/plugins/react-native/react-native.plugin.zsh
Normal file
79
dot_oh-my-zsh/plugins/react-native/react-native.plugin.zsh
Normal file
|
@ -0,0 +1,79 @@
|
|||
# React Native
|
||||
alias rn='react-native'
|
||||
alias rns='react-native start'
|
||||
alias rnlink='react-native link'
|
||||
alias rnland='react-native log-android'
|
||||
alias rnlios='react-native log-ios'
|
||||
alias rnand='react-native run-android'
|
||||
alias rnios='react-native run-ios'
|
||||
|
||||
# iPhone
|
||||
alias rnios4s='react-native run-ios --simulator "iPhone 4s"'
|
||||
alias rnios5='react-native run-ios --simulator "iPhone 5"'
|
||||
alias rnios5s='react-native run-ios --simulator "iPhone 5s"'
|
||||
alias rnios6='react-native run-ios --simulator "iPhone 6"'
|
||||
alias rnios6p='react-native run-ios --simulator "iPhone 6 Plus"'
|
||||
alias rnios6s='react-native run-ios --simulator "iPhone 6s"'
|
||||
alias rnios6sp='react-native run-ios --simulator "iPhone 6s Plus"'
|
||||
alias rnios7='react-native run-ios --simulator "iPhone 7"'
|
||||
alias rnios7p='react-native run-ios --simulator "iPhone 7 Plus"'
|
||||
alias rnios8='react-native run-ios --simulator "iPhone 8"'
|
||||
alias rnios8p='react-native run-ios --simulator "iPhone 8 Plus"'
|
||||
alias rniosse='react-native run-ios --simulator "iPhone SE"'
|
||||
alias rniosx='react-native run-ios --simulator "iPhone X"'
|
||||
alias rniosxs='react-native run-ios --simulator "iPhone Xs"'
|
||||
alias rniosxsm='react-native run-ios --simulator "iPhone Xs Max"'
|
||||
alias rniosxr='react-native run-ios --simulator "iPhone Xʀ"'
|
||||
alias rnios11='react-native run-ios --simulator "iPhone 11"'
|
||||
alias rnios11p='react-native run-ios --simulator "iPhone 11 Pro"'
|
||||
alias rnios11pm='react-native run-ios --simulator "iPhone 11 Pro Max"'
|
||||
alias rnios12='react-native run-ios --simulator "iPhone 12"'
|
||||
alias rnios12m='react-native run-ios --simulator "iPhone 12 mini"'
|
||||
alias rnios12p='react-native run-ios --simulator "iPhone 12 Pro"'
|
||||
alias rnios12pm='react-native run-ios --simulator "iPhone 12 Pro Max"'
|
||||
alias rnios13='react-native run-ios --simulator "iPhone 13"'
|
||||
alias rnios13m='react-native run-ios --simulator "iPhone 13 mini"'
|
||||
alias rnios13p='react-native run-ios --simulator "iPhone 13 Pro"'
|
||||
alias rnios13pm='react-native run-ios --simulator "iPhone 13 Pro Max"'
|
||||
alias rnios14='react-native run-ios --simulator "iPhone 14"'
|
||||
alias rnios14pl='react-native run-ios --simulator "iPhone 14 Plus"'
|
||||
alias rnios14p='react-native run-ios --simulator "iPhone 14 Pro"'
|
||||
alias rnios14pm='react-native run-ios --simulator "iPhone 14 Pro Max"'
|
||||
alias rnios15='react-native run-ios --simulator "iPhone 15"'
|
||||
alias rnios15pl='react-native run-ios --simulator "iPhone 15 Plus"'
|
||||
alias rnios15p='react-native run-ios --simulator "iPhone 15 Pro"'
|
||||
alias rnios15pm='react-native run-ios --simulator "iPhone 15 Pro Max"'
|
||||
|
||||
# iPad
|
||||
alias rnipad2='react-native run-ios --simulator "iPad 2"'
|
||||
alias rnipad5='react-native run-ios --simulator "iPad (5th generation)"'
|
||||
alias rnipad6='react-native run-ios --simulator "iPad (6th generation)"'
|
||||
alias rnipadr='react-native run-ios --simulator "iPad Retina"'
|
||||
alias rnipada='react-native run-ios --simulator "iPad Air"'
|
||||
alias rnipada2='react-native run-ios --simulator "iPad Air 2"'
|
||||
alias rnipada3='react-native run-ios --simulator "iPad Air (3rd generation)"'
|
||||
alias rnipadm2='react-native run-ios --simulator "iPad mini 2"'
|
||||
alias rnipadm3='react-native run-ios --simulator "iPad mini 3"'
|
||||
alias rnipadm4='react-native run-ios --simulator "iPad mini 4"'
|
||||
alias rnipadm5='react-native run-ios --simulator "iPad mini (5th generation)"'
|
||||
alias rnipadp9='react-native run-ios --simulator "iPad Pro (9.7-inch)"'
|
||||
alias rnipadp12='react-native run-ios --simulator "iPad Pro (12.9-inch)"'
|
||||
alias rnipadp122='react-native run-ios --simulator "iPad Pro (12.9-inch) (2nd generation)"'
|
||||
alias rnipadp10='react-native run-ios --simulator "iPad Pro (10.5-inch)"'
|
||||
alias rnipad11='react-native run-ios --simulator "iPad Pro (11-inch)"'
|
||||
alias rnipad123='react-native run-ios --simulator "iPad Pro (12.9-inch) (3rd generation)"'
|
||||
|
||||
# Apple TV
|
||||
alias rnatv='react-native run-ios --simulator "Apple TV"'
|
||||
alias rnatv4k='react-native run-ios --simulator "Apple TV 4K"'
|
||||
alias rnatv4k1080='react-native run-ios --simulator "Apple TV 4K (at 1080p)"'
|
||||
|
||||
# Apple Watch
|
||||
alias rnaw38='react-native run-ios --simulator "Apple Watch - 38mm"'
|
||||
alias rnaw42='react-native run-ios --simulator "Apple Watch - 42mm"'
|
||||
alias rnaws238='react-native run-ios --simulator "Apple Watch Series 2 - 38mm"'
|
||||
alias rnaws242='react-native run-ios --simulator "Apple Watch Series 2 - 42mm"'
|
||||
alias rnaws338='react-native run-ios --simulator "Apple Watch Series 3 - 38mm"'
|
||||
alias rnaws342='react-native run-ios --simulator "Apple Watch Series 3 - 42mm"'
|
||||
alias rnaws440='react-native run-ios --simulator "Apple Watch Series 4 - 40mm"'
|
||||
alias rnaws444='react-native run-ios --simulator "Apple Watch Series 4 - 44mm"'
|
Loading…
Add table
Add a link
Reference in a new issue