diff options
author | 2024-03-25 16:43:09 +0530 | |
---|---|---|
committer | 2024-03-25 16:43:09 +0530 | |
commit | a62114c91f2070c8c8453d117f3d81dc113e41ff (patch) | |
tree | f266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/lando/README.md | |
parent | af120ab348f2e1a5a39dec035ed9dcf84189a64e (diff) | |
download | dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2 dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip |
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/lando/README.md')
-rw-r--r-- | zsh/oh-my-zsh/plugins/lando/README.md | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/zsh/oh-my-zsh/plugins/lando/README.md b/zsh/oh-my-zsh/plugins/lando/README.md deleted file mode 100644 index 928a42b..0000000 --- a/zsh/oh-my-zsh/plugins/lando/README.md +++ /dev/null @@ -1,37 +0,0 @@ -# Lando ZSH (lando-zsh) - -This plugin adds aliases for using various languages and frameworks with [Lando](https://docs.lando.dev/basics/) for Docker. It will only run within lando-driven project directories. - -To use it, add `lando` to the plugins array in your zshrc file: - -```zsh -plugins=(... lando) -``` - -## ALIASES: - -| Alias | Description | -|:----------:|:----------------:| -| `artisan` | `lando artisan` | -| `composer` | `lando composer` | -| `drush` | `lando drush` | -| `gulp` | `lando gulp` | -| `npm` | `lando npm` | -| `wp` | `lando wp` | -| `yarn` | `lando yarn` | - -## How It Works: - -This plugin removes the requirement to type `lando` before a command. It utilizes the lando version of supported commands run within directories with the following criteria: -- The `.lando.yml` file is found in the current directory or any parent directory within `$LANDO_ZSH_SITES_DIRECTORY`. -- The current directory is within `$LANDO_ZSH_SITES_DIRECTORY` but is not `$LANDO_ZSH_SITES_DIRECTORY` itself. - -## Settings: - -- `LANDO_ZSH_SITES_DIRECTORY`: The plugin will stop searching through parents for `CONFIG_FILE` once it hits this directory. -- `LANDO_ZSH_CONFIG_FILE`: The plugin will check to see if this provided file exists to check for presence of Lando. - -## Author: - -- Author: Joshua Bedford -- URL: [https://github.com/joshuabedford/lando-zsh](https://github.com/joshuabedford/lando-zsh) |