From 62e1bff8aaa82104ade73d3307e9eb7d3b553219 Mon Sep 17 00:00:00 2001 From: qwjyh Date: Fri, 7 Oct 2022 00:08:25 +0900 Subject: [PATCH] add README for pwsh PROFILE --- dotfiles/pwsh/README.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 dotfiles/pwsh/README.md diff --git a/dotfiles/pwsh/README.md b/dotfiles/pwsh/README.md new file mode 100644 index 0000000..fcd08ab --- /dev/null +++ b/dotfiles/pwsh/README.md @@ -0,0 +1,34 @@ +# PowerShell PROFILE description +some notable features + +## Key-Bindings +- tab completion like fish +- `Ctrl + D` to exit +- `Ctrl + G` to Invoke-FzfTabCompletion +- `Ctrl + t` to select providers with fzf +- `Ctrl + r` to fzf history + +## Aliases +- `~`, `..` +- `epl` = `explorer.exe .` +- `whereis` = `where.exe` + +## Change Encodings Instantly +You can change PowerShell encodings instantly. +Especially useful for piping into linux commands like `less` +- `Set-UTF8`, `Set-UTF16LE` +- `Remove-EncodingSettings` +- `Reset-EncodingSettings` + +## ssh-agent +- `Invoke-SshAdd` + +## `$env:` +- `$env:LESS` + +## Auto Completions +- scoop +- chezmoi +- git +- winget +- chocolatey \ No newline at end of file