美化
scoop install conemu
Install-Module oh-my-posh -Scope CurrentUser
增强
命令别名 — Set-Alias
# 编辑 PowerShell 的 $PROFILE
notepad $PROFILE
# 向 $PROFILE 插入以下内容
Set-Alias py python
# 安装 posh-git
Install-Module posh-git -Scope CurrentUser
# 编辑 PowerShell 的 $PROFILE
notepad $PROFILE
# 向 $PROFILE 插入以下内容
Import-Module posh-git
附录
我的配置
# git 命令补全
Import-Module posh-git
# 别名
Set-Alias py python
参考配置
Import-Module Get-ChildItemColor
$env:PYTHONIOENCODING="utf-8"
# Remove curl alias
If (Test-Path Alias:curl) {Remove-Item Alias:curl}
If (Test-Path Alias:curl) {Remove-Item Alias:curl}
# Remove-Item alias:ls -force
Set-Alias l Get-ChildItemColor -option AllScope
Set-Alias ls Get-ChildItemColorFormatWide -option AllScope
function GitLogPretty {
git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --all
}
function PrettyLS {
colorls --light -A
}
function GitStat {git status}
function GoBack {Set-Location ..}
function GetMyIp {curl -L tool.lu/ip}
function UpdateScoop {scoop update; scoop update *}
function UpdateChoco {choco upgrade chocolatey}
Import-Module posh-git
Import-Module oh-my-posh
# $DefaultUser = 'spenc'
# Setup other alias
Set-Alias open Invoke-Item
Set-Alias .. GoBack
Set-Alias glola GitLogPretty
Set-Alias gst GitStat
Set-Alias myip GetMyIp
Set-Alias pls PrettyLS
# Set theme
Set-Theme robbyrussell
Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete
参考文档