0%

WindowsTerminal配置

配置windows终端

终端

1. 下载

可于windows应用商店下载

2. 下载安装Scoop

2.1 设置远程权限
Set-ExecutionPolicy RemoteSigned -scope CurrentUser
2.2 下载安装
irm get.scoop.sh | iex

3. 安装 PSReadline 包,该插件可以让命令行很好用,类似 zsh

Install-Module -Name PSReadLine -Scope CurrentUser

4. 安装 posh-git 包,让你的 git 更好用

Install-Module posh-git -Scope CurrentUser

5. 安装 oh-my-posh 包,让你的命令行更酷炫、优雅

Install-Module oh-my-posh -Scope CurrentUser

6. 添加Powershell配置参数

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
# 引入 posh-git
Import-Module posh-git

# 引入 oh-my-posh
Import-Module oh-my-posh

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

# oh-my-posh init pwsh | Invoke-Expression
#oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/jandedobbeleer.omp.json" | Invoke-Expression
#oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/1_shell.omp.json" | Invoke-Expression
oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/kushal.omp.json" | Invoke-Expression
#oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/montys.omp.json" | Invoke-Expression
#oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/honukai.omp.json" | Invoke-Expression
#oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/atomic.omp.json" | Invoke-Expression

# 设置预测文本来源为历史记录
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

Import-Module posh-git # git的自动补全
Import-Module -Name Terminal-Icons

Set-Alias cl clear

7. 添加完成后执行

. $PROFILE

8. 美化icon

Install-Module -Name Terminal-Icons -Repository PSGallery

9. 安装Busybox

可使用linux的部分命令

安装方式scoop

10. 设置别名

  1. Set-Alias cl clear

  2. function ll {busybox ls -l}

11. 下载字体

推荐使用 Nerd Font 下载 https://www.nerdfonts.com/font-downloads
如: JetBrainsMono Nerd Font Mono

12. 主题

查看主题样式后在$Profile中更改主题名即可
https://ohmyposh.dev/docs/themes/