mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-09 02:24:03 +01:00
Added dot-env plugin
Dot-env is a cross-platform, cascading Zsh environment system for those who work on different hardware and OS environments. See: https://github.com/midwire/.env
This commit is contained in:
parent
f4944d5a95
commit
ae2db75f3e
20 changed files with 629 additions and 0 deletions
20
plugins/dot-env/global/alias/rails.sh
Normal file
20
plugins/dot-env/global/alias/rails.sh
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# Rails & Development Aliases
|
||||
alias a='autotest -rails'
|
||||
alias b="bundle"
|
||||
alias be="bundle exec"
|
||||
alias bi="bundle install --path vendor"
|
||||
alias bil="bi --local"
|
||||
alias binit="bi && bundle package && echo 'vendor/ruby' >> .gitignore"
|
||||
alias bu="bundle update"
|
||||
alias p='pry'
|
||||
alias rc='rails c'
|
||||
alias rd='rails destroy'
|
||||
alias re='echo $RAILS_ENV'
|
||||
alias rg='rails g'
|
||||
alias rp='rails plugin'
|
||||
alias rs='rails s'
|
||||
alias sc='./script/console'
|
||||
alias sd='./script/destroy'
|
||||
alias sg='./script/generate'
|
||||
alias sp='./script/plugin'
|
||||
alias ss='./script/server'
|
||||
Loading…
Add table
Add a link
Reference in a new issue