PowerShell最佳实践
PowerShell最佳实践
Windows 10 系统自带 PowerShell,美化教程
0x01 安装Fluent Terminal
在Windows 应用商店安装,或者Github
0x02 安装powershell模块
1、安装posh-git、oh-my-posh和Get-ChildItemColor(美化ls命令):
在powershell管理员模式下:
1 | Install-Module posh-git -Scope CurrentUser |
2、设置修改powershell的配置文件:
1 | if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force } |
输入内容:
1 | Import-Module DirColors |
其中主题名可以在下面的路径里找到,可以自行切换主题。
1 | C:\Program Files\WindowsPowerShell\Modules\oh-my-posh\3.163.0\themes |
0x03 安装Powerline字体
在Fluent Terminal设置 powerline 字体和字体大小。
0x04 文件管理器命令
在文件夹中打开:
1 | I 在文件夹中打开 |
在当前文件夹打开PowerShell:
空白处 Shift + 鼠标右键,在弹出的菜单中选择PowerShell.
0x05 VS Code 命令
1 | code . |