diff options
Diffstat (limited to 'docs/getting_started')
-rw-r--r-- | docs/getting_started/setup_your_environment.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/getting_started/setup_your_environment.md b/docs/getting_started/setup_your_environment.md index 7aa7ec83f..c7b051262 100644 --- a/docs/getting_started/setup_your_environment.md +++ b/docs/getting_started/setup_your_environment.md @@ -66,6 +66,17 @@ After this add deno plugin under plugins tag in `~/.zshrc` file. for tools like `antigen` path will be `~/.antigen/bundles/robbyrussell/oh-my-zsh/plugins` and command will be `antigen bundle deno` and so on. +Example (Powershell): + +```shel +deno completions powershell > $profile +.$profile +``` + +This will be create a Powershell profile at +`$HOME\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1` by default, +and it will be run whenever you launch the PowerShell. + ### Editors and IDEs Because Deno requires the use of file extensions for module imports and allows |