https://github.com/tofuutils/zsh-tenv
https://github.com/tofuutils/zsh-tenv
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/tofuutils/zsh-tenv
- Owner: tofuutils
- License: apache-2.0
- Created: 2024-05-27T17:14:31.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-27T13:46:36.000Z (almost 2 years ago)
- Last Synced: 2024-08-27T15:15:05.240Z (almost 2 years ago)
- Language: Shell
- Size: 8.79 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zsh-tenv
tenv autocompletion plugin for zsh
## How to install
### Simple ZSH
Clone the repository and source the [tenv.plugin.zsh](tenv.plugin.zsh)
```
git clone https://github.com/tofuutils/zsh-tenv
source zsh-tenv/tenv.plugin.zsh
```
To make this changes permanent, either add `source /path/to/tenv.plugin.zsh` or
copy the contents of [tenv.plugin.zsh](tenv.plugin.zsh) to your .zshrc
### As Oh My zsh plugin
Clone this repositoriy into your oh my zsh plugins directory
```
git clone https://github.com/tofuutils/zsh-tenv /path/to/myzsh/plugins/tenv
```
add the plugin to your .zshrc plugins array
```
plugins=(... tenv)
```
### How to update
If you are using simple ZSH, repeat the install process.
if you are using as oh my zsh plugin, cd into tenv plugin directory and git pull
```
cd /path/to/ohmyzsh/plugins/tenv
git pull origin main
```