PowerShell
作者:互联网
前提:先通过微软商店安装 Windows Terminal 和 PowerShell
配置文件
-
修改配置文件
配置文件修改如下(由于几乎只有 PowerShell 与 Windows 完美契合,所以其他终端的配置都删掉了):
-
安装插件等(下载如果很慢的话则需要魔法)
打开安装的
PowerShell
,执行如下命令:# 安装 Oh My Posh(类似 Linux 和 MacOS 中的 Oh My Zsh) Install-Module oh-my-posh -Scope CurrentUser # 安装 posh-git 包,使得 git 更好用 Install-Module posh-git -Scope CurrentUser # 安装 PSReadLine 工具 Install-Module -Name PSReadLine -AllowPrerelease -Scope CurrentUser -Force -SkipPublisherCheck
-
启动激活
Oh My Posh
code $PROFILE
新建文件,添加如下配置信息:Import-Module posh-git Import-Module oh-my-posh Set-PoshPrompt -Theme robbyrussel
我这里设置的主题为
robbyrussel
。若要更改主题,到官网
https://ohmyposh.dev/docs/themes
或者执行Get-PoshThemes
查看主题效果,更换为自己喜欢的相应主题的名字即可。 -
防止字体乱码
官网
https://www.nerdfonts.com/font-downloads
安装一种Nerd
字体,然后将默认的Windows Terminal
的字体修改为该字体样式。 -
开启智能预测
Predictive IntelliSense
默认关闭,需要手动开启。code $PROFILE
配置如下:# 开启预测,并设置预测文本来源为历史记录 Set-PSReadLineOption -PredictionSource History # 设置 Tab 为菜单补全和 Intellisense Set-PSReadLineKeyHandler -Key Tab -Function MenuComplete
PS 命令
# 查找命令,类似 Linux Shell 中的 find /root --name fileName
get-ChildItem D:\ -Recurse -Include cs.png
# 可以简写成下:
gci d:/ -r -i cs.png
# 其中 -Include 和 -i 可以改写成 -Filter 和 -fi,效果是一样的
PS 中的 Length 字段的单位为 B,和 Linux Shell 相同
标签:git,配置文件,posh,Module,安装,PowerShell 来源: https://www.cnblogs.com/zhenyoung/p/16617479.html