本文介紹如何給Windows系統的終端進行打扮,最下面會有效果圖git
前往GitHub找到下面的文件下載
github
下載後解壓,進入解壓後的目錄,找到Install.ps1
文件,右擊使用PowerShell
運行,彈出PowerShell
後,按照提示,就能夠成功安裝了。web
以管理員身份打開PowerShell執行如下命令,碰到詢問你是否幹嗎幹嗎的,直接輸入Y
確認shell
Set-ExecutionPolicy Bypass
Install-Module posh-git -Scope CurrentUser
碰到詢問你是否幹嗎幹嗎的,直接輸入Y
確認bash
Install-Module oh-my-posh -Scope CurrentUser
Import-Module oh-my-posh
環境要求:一、Windows 版本不低於 Windows 7 oop
二、Windows 中的 PowerShell 版本不低於 PowerShell 3 字體
三、你能 正常、快速 的訪問 GitHub 並下載上面的資源 spa
四、你的 Windows 用戶名爲英文(Windows 用戶環境變量中路徑值不支持中文字符)命令行
#保證容許本地腳本的執行 set-executionpolicy remotesigned -scope currentuser # 安裝 iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
# 搜索 nerd fonts,這裏選擇是的FantasqueSansMono這個字體 scoop search FantasqueSansMono-NF # 添加 nerd fonts 源 scoop bucket add 'nerd-fonts' # 安裝 nerd fonts scoop install FantasqueSansMono-NF
如下是我舉例的配置,若是須要更換樣式,將Set-Theme
後面的配置改爲本身想要的便可,在命令行經過輸入Set-Theme
之後空格如下而後按tab
鍵選擇你想要的,這都是oh-my-posh
自帶的,選擇好了以後將那個名字替換掉下面命令的便可code
# 一、設置 Powershell 的 profile if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force } # 二、打開該配置文件 notepad $PROFILE # 三、複製如下內容到配置文件保存 Import-Module posh-git Import-Module oh-my-posh Set-Theme Agnoster
經過上面的操做後,關閉全部已經打開的命令行,從新啓動命令行,就能夠看到效果啦,進入一個git項目,效果圖以下
文章到此結束啦,有啥疑問歡迎在評論區留言