配置 PowerShell 主题

安装配置 Scoop

Scoop 第三方 Windows 包管理工具。

1
2
3
set-executionpolicy remotesigned -scope currentuser
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
scoop help

命令

命令动作
search搜索软件名
install安装软件
update更新软件
status查看软件状态
uninstall卸载软件
info查看软件详情
home打开软件主页

安装 oh-my-posh

1
2
3
Install-Module posh-git -Scope CurrentUser 
Install-Module oh-my-posh -Scope CurrentUser
Install-Module -AllowClobber Get-ChildItemColor

PowerShell 配置文件

1
2
3
4
5
# 新建 PowerShell 配置文件
if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force }

# 记事本打开配置文件
notepad $PROFILE
  • 我的配置文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
Import-Module Get-ChildItemColor

$env:PYTHONIOENCODING="utf-8"
# Remove curl alias
If (Test-Path Alias:curl) {Remove-Item Alias:curl}
If (Test-Path Alias:curl) {Remove-Item Alias:curl}
# Remove-Item alias:ls -force
Set-Alias l Get-ChildItemColor -option AllScope
Set-Alias ls Get-ChildItemColorFormatWide -option AllScope

function GitLogPretty {
git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --all
}

function PrettyLS {
colorls --light -A
}

function GitStat { git status }

function GoBack { Set-Location .. }

function GetMyIp { curl -L tool.lu/ip }
function UpdateScoop { scoop update; scoop update * }

function Vscode { code .}

function HexoServe { hexo clean; hexo g; hexo s}

# Git Commit, Add all and Push — in one step.
function GitAdd{ git add . ; git commit -m "⚡ ADD: $args" }

function GitCap{ git add . ; git commit -m "$args" ; git push }

# NEW.
function GitNew{ gcap "<F0><9F><93><A6> NEW: $args" }

# IMPROVE.
function GitImp{ gcap "👌 IMPROVE: $args" }

# FIX.
function GitFix{ gcap "🐛 FIX: $args" }

# RELEASE.
function GitRlz{ gcap "🚀 RELEASE: $args" }

# DOC.
function GitDoc{ gcap"📖 DOC: $args" }

# TEST.
function GitTst{ gcap "✅ TEST: $args" }

Import-Module posh-git
Import-Module oh-my-posh
# $DefaultUser = 'spenc'

# Setup other alias
Set-Alias open Invoke-Item
Set-Alias .. GoBack
Set-Alias glola GitLogPretty
Set-Alias gst GitStat
Set-Alias myip GetMyIp
Set-Alias pls PrettyLS
Set-Alias suu UpdateScoop
Set-Alias vs Vscode
Set-Alias vitan HexoServe
Set-Alias gadd GitAdd
Set-Alias gcap GitCap
Set-Alias gnew GitNew
Set-Alias gimp GitImp
Set-Alias gfix GitFix
Set-Alias grlz grlz
Set-Alias gdoc GitDoc
Set-Alias gtst GitTst

# Set theme
Set-Theme Paradox

Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete

更换主题

1
Set-Theme <主题名>

主题

查阅

安装 colortool 配色管理

1
scoop install colortool

基本命令

1
2
3
4
5
6
7
8
# 查看主题配色
colortool -s

# 临时查看
colortool <主题名称>

# 定义默认值
colortool -d <主题名称>

字体


本站由 VITAN 使用 Stellar 主题创建。
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处。