Powershell美化

  1. Powershell美化
    1. 插件安装
    2. 配置
    3. 字体下载
    4. cmder+powershell

Powershell美化

效果:

插件安装

1
2
3
4
5
6
7
8
9
10
Set-ExecutionPolicy Bypass
Install-PackageProvider NuGet -MinimumVersion '2.8.5.201' -Force
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
PowershellGet\Install-Module PSReadLine
# Install-Module -AllowClobber posh-git -Scope CurrentUser
Install-Module -AllowClobber posh-git
Install-Module oh-my-posh
Install-Module -AllowClobber Get-ChildItemColor

if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force }

配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Set-Alias l Get-ChildItem -option AllScope
Set-Alias ls Get-ChildItemColorFormatWide -option AllScope
# Shows navigable menu of all options when hitting Tab
Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete
# Autocompletion for arrow keys
Set-PSReadlineKeyHandler -Key UpArrow -Function HistorySearchBackward
Set-PSReadlineKeyHandler -Key DownArrow -Function HistorySearchForward
# auto suggestions
Import-Module PSReadLine
Set-PSReadLineOption -PredictionSource History
chcp 65001
Import-Module DirColors
Import-Module posh-git
Import-Module oh-my-posh
Set-Theme Agnoster
# Set-PoshPrompt Paradox
# Set-PoshPrompt material

字体下载

字体地址

个人推荐,这两套字体比较全,适配也还不错

cmder+powershell

1
2
3
配置方式一:将上面 $PROFILE(即Microsoft.PowerShell_profile.ps1文件) 的内容加入 cmder安装路径的 config目录下的 user-profile.ps1中。
配置方式二:你也可以配置 cmder 的 Powershell标签 直接加载 Microsoft.PowerShell_profile.ps1文件。通过在cmder settings 启动 任务 PowerShell::PowerShell 的命令组内容修改为下面的形式,注意文件路径需要是你自己的 Microsoft.PowerShell_profile.ps1路径:
PowerShell -ExecutionPolicy Bypass -NoLogo -NoProfile -NoExit -Command "Invoke-Expression '. ''D:\Fan Dean\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1'''"

转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 nathanwriting@126.com

文章标题:Powershell美化

字数:289

本文作者:Nathaniel

发布时间:20222-09-18, 16:52:00

最后更新:2023-11-06, 22:59:18

原始链接:http://example.com/20222/09/18/powershell-ohmyzsh/

版权声明: "署名-非商用-相同方式共享 4.0" 转载请保留原文链接及作者。

×

喜欢就点赞,疼爱就打赏