【GiraKoo】PowerShell美化筆記

GiraKoo發表於2024-09-26

【GiraKoo】PowerShell美化筆記

oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/powerlevel10k_lean.omp.json" | Invoke-Expression

#------------------------------- ps-read-line -------------------------------
# 引入 ps-read-line
Import-Module PSReadLine

# 設定預測文字來源為歷史記錄
Set-PSReadLineOption -PredictionSource History

# 每次回溯輸入歷史,游標定位於輸入內容末尾
Set-PSReadLineOption -HistorySearchCursorMovesToEnd

# 設定 Tab 為選單補全和 Intellisense
Set-PSReadLineKeyHandler -Key "Tab" -Function MenuComplete

# 設定 Ctrl+d 為退出 PowerShell
Set-PSReadlineKeyHandler -Key "Ctrl+d" -Function ViExit

# 設定 Ctrl+z 為撤銷
Set-PSReadLineKeyHandler -Key "Ctrl+z" -Function Undo

# 設定向上鍵為後向搜尋歷史記錄
Set-PSReadLineKeyHandler -Key UpArrow -Function HistorySearchBackward

# 設定向下鍵為前向搜尋歷史紀錄
Set-PSReadLineKeyHandler -Key DownArrow -Function HistorySearchForward
#------------------------------- ps-read-line -------------------------------

相關文章