作者:钟爱胖胖 | 来源:互联网 | 2024-11-28 07:25
本文将指导你如何通过自定义配置,使WindowsTerminal中的PowerShell7更加高效且美观。我们将移除默认的广告和提示符,设置快捷键,并添加实用的别名和功能。
1. 效果展示
以下是未进行任何配置的 Windows Terminal 界面截图:
可以看到,初始界面不仅包含广告,而且命令行提示符前有“PS”字样,这可能会对一些用户造成干扰。
2. 配置步骤
2.1 提升 PowerShell 7 的使用体验
首先,我们需要编辑 PowerShell 的配置文件。打开任意终端窗口,输入以下命令以打开配置文件:
notepad.exe $PROFILE
在打开的记事本中,添加以下内容以增强 PowerShell 的功能:
# 导入模块
Import-Module posh-git # 移除命令行前的 'PS'
# 设置热键
Set-PSReadLineOption -PredictionSource History # 设置预测文本来源为历史记录
Set-PSReadLineOption -HistorySearchCursorMovesToEnd # 回溯历史时,光标定位到输入末尾
Set-PSReadLineKeyHandler -Key "Tab" -Function MenuComplete # 设置 Tab 键为菜单补全和智能感知
Set-PSReadLineKeyHandler -Key "Ctrl+d" -Function ViExit # 设置 Ctrl+d 为退出 PowerShell
Set-PSReadLineKeyHandler -Key "Ctrl+z" -Function Undo # 设置 Ctrl+z 为撤销操作
Set-PSReadLineKeyHandler -Key UpArrow -Function HistorySearchBackward # 设置上箭头键为后向搜索历史记录
Set-PSReadLineKeyHandler -Key DownArrow -Function HistorySearchForward # 设置下箭头键为前向搜索历史记录
# 定义函数
$env:PATHEXT += ";.py" # 允许直接运行 Python 脚本
function Update-Packages {
# 更新 pip
Write-Host "Step 1: 更新 pip" -ForegroundColor Magenta -BackgroundColor Cyan
$a = pip list --outdated
$num_package = $a.Length - 2
for ($i = 0; $i -lt $num_package; $i++) {
$tmp = ($a[2 + $i].Split(" "))[0]
pip install -U $tmp
}
# 更新 TeX Live
$CurrentYear = Get-Date -Format yyyy
Write-Host "Step 2: 更新 TeX Live $CurrentYear" -ForegroundColor Magenta -BackgroundColor Cyan
tlmgr update --self
tlmgr update --all
# 更新 Chocolatey
Write-Host "Step 3: 更新 Chocolatey" -ForegroundColor Magenta -BackgroundColor Cyan
choco outdated
}
# 设置别名
function MakeThings { nmake.exe $args -nologo }
Set-Alias -Name make -Value MakeThings
Set-Alias -Name os-update -Value Update-Packages
function ListDirectory { (Get-ChildItem).Name; Write-Host("") }
Set-Alias -Name ls -Value ListDirectory
Set-Alias -Name ll -Value Get-ChildItem
function OpenCurrentFolder { param($Path = '.') Invoke-Item $Path }
Set-Alias -Name open -Value OpenCurrentFolder
# 网络相关函数
function Get-AllNic { Get-NetAdapter | Sort-Object -Property MacAddress }
Set-Alias -Name getnic -Value Get-AllNic
function Get-IPv4Routes { Get-NetRoute -AddressFamily IPv4 | Where-Object -FilterScript { $_.NextHop -ne '0.0.0.0' } }
Set-Alias -Name getip -Value Get-IPv4Routes
function Get-IPv6Routes { Get-NetRoute -AddressFamily IPv6 | Where-Object -FilterScript { $_.NextHop -ne '::' } }
Set-Alias -Name getip6 -Value Get-IPv6Routes
# 清屏
clear
完成编辑后,按 Ctrl+S 保存文件,然后重新打开 Windows Terminal 即可看到效果。
2.2 设置背景图片及透明度
为了进一步美化终端界面,我们还可以设置背景图片并调整其透明度。具体步骤如下: