允许powershell执行脚本,如果不允许的话,后续执行安装命令会报错
一款 Nerd Font,Nerd Font字体中包含了很多特殊的图标,如果不使用Nerd Font的话,后面设置了终端的主题后会乱码
vscode
Windows Terminal
oh-my-posh
在Windows Terminal里执行下面命令
Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://ohmyposh.dev/install.ps1'))
复制代码
oh-my-posh
并自定义主题在Windows Terminal里执行下面命令
oh-my-posh init pwsh | Invoke-Expression
复制代码
这时oh-my-posh会设置一个默认的主题(只要看到彩色的字体,应该就是设置成功啦)
如果想要设置其它主题的话,可以在执行
Get-PoshThemes
复制代码
查看所有可设置的主题
在执行Get-PoshThemes
完命令输出所有主题的样式后,会在最后告诉我们所有主题文件的路径,以及怎么设置主题;
以我本机为例,可以在上图看到
所有主题文件的路径: C:\Users\aifuxi\AppData\Local\Programs\oh-my-posh\themes
设置主题的命令:
oh-my-posh init pwsh --config C:\Users\aifuxi\AppData\Local\Programs\oh-my-posh\themes/jandedobbeleer.omp.json | Invoke-Expression
复制代码
jandedobbeleer.omp.json
就是主题的配置文件,jandedobbeleer
是主题名。比如我想设置ys
这个主题,只需要把上面命令中的jandedobbeleer.omp.json
改成ys.omp.json
就可以了。
在Windows Terminal里执行设置主题的命令,只是临时改变主题,要想每次打开都自动设置主题我们就得编辑个配置文件了。
在Windows Terminal里执行下面命令编辑或新建一个配置文件
notepad $PROFILE
# 如果在path里安装了vscode也可以用下面命令打开
code $PROFILE
复制代码
以我自己为例,我想设置主题为1_shell
这个主题,那么就可以在刚刚打开的配置文件里加上这句话然后保存并重启Windows Terminal
oh-my-posh init pwsh --config C:\Users\aifuxi\AppData\Local\Programs\oh-my-posh\themes/1_shell.omp.json | Invoke-Expression
复制代码
注意:这里的C:\Users\aifuxi\AppData\Local\Programs\oh-my-posh\themes/1_shell.omp.json
这个路径是我本机的路径,每个人的电脑的配置文件路径都是不一样的,请根据实际情况进行修改,不要盲目复制。 这是设置主题为1_shell
的效果,还是挺好看的。
修改vscode配置文件settings.json
{
// 代码字体,可根据实际情况进行设置
"editor.fontFamily": "'Hasklug Nerd Font Mono',Menlo, Monaco, 'Courier New', monospace",
// 终端字体,我这里是设置的Hasklug Nerd Font Mono,可根据实际安装的Nerd Font进行设置
"terminal.integrated.fontFamily": "Hasklug Nerd Font Mono",
}
复制代码
PSReadLine:github.com/PowerShell/…
PSReadLine模块取代了 PowerShell 版本 3 及更高版本的命令行编辑体验。它提供:
- 语法着色
- 简单语法错误通知
- 良好的多线体验(编辑和历史)
- 可定制的键绑定
- Cmd 和 emacs 模式(都没有完全实现,但都可以使用)
- 许多配置选项
- Bash 样式完成(在 Cmd 模式下可选,在 Emacs 模式下默认)
- Bash/zsh 风格的交互式历史搜索 (CTRL-R)
- Emacs yank/kill ring
- 基于 PowerShell 令牌的“单词”移动和杀死
- 撤销重做
- 自动保存历史记录,包括跨实时会话共享历史记录
- 通过 Ctrl+Space 完成“菜单”完成(有点像 Intellisense,用箭头选择完成)
- “开箱即用”的体验意味着 PowerShell 用户非常熟悉 - 不需要学习任何新的击键。
上面是github里的介绍,但其实我们主要用到PSReadLine的功能就是
gi
,就能显示出以前敲过的git log
命令,然后按【→】键就可以补全命令了,对于经常敲命令的人来说还是非常有用的,可以提高开发效率。Install-Module PSReadLine -Force
复制代码
没有以管理员身份运行Windows Terminal时会报错
notepad $PROFILE
# 如果在path里安装了vscode也可以用下面命令打开
code $PROFILE
复制代码
Set-PSReadLineOption -PredictionSource History # 设置预测文本来源为历史记录
Set-PSReadlineKeyHandler -Key Tab -Function Complete # 设置 Tab 键补全
Set-PSReadLineKeyHandler -Key "Ctrl+d" -Function MenuComplete # 设置 Ctrl+d 为菜单补全和 Intellisense
Set-PSReadLineKeyHandler -Key "Ctrl+z" -Function Undo # 设置 Ctrl+z 为撤销
Set-PSReadLineKeyHandler -Key UpArrow -Function HistorySearchBackward # 设置向上键为后向搜索历史记录
Set-PSReadLineKeyHandler -Key DownArrow -Function HistorySearchForward # 设置向下键为前向搜索历史纪录
复制代码
Install-Module -Name PSReadLine -AllowPrerelease
来安装PSReadLine? 其实开始的时候我是用这条命令来安装的,是根据 @i树 兄弟提供的链接来的, 但是报错了 然后我去看了下github的安装文档找到了原因。Install-Module -Name PSReadLine -AllowPrerelease
中-AllowPrerelease
是PowerShellGet
这个模块提供的能力,首先得安装PowerShellGet
# 先安装PowerShellGet
Install-Module -Name PowerShellGet -Force
# 然后再这条命令安装PSReadLine
Install-Module PSReadLine -AllowPrerelease -Force
复制代码
每次打开Windows Terminal都会出现烦人的copyright
Windows PowerShell 版权所有(C) Microsoft Corporation。保留所有权利。
安装最新的 PowerShell,了解新功能和改进!aka.ms/PSWindows
我们可以添加 -nologo
参数来隐藏这段文字
打开Windows Terminal设置,Windows PowerShell -> 命令行,在路径后面添加上-nologo
,然后保存重启Windons Terminal就能看到烦人的copyright提示没啦
修改vscode配置文件settings.json
,加上terminal.integrated.profiles.windows
这个字段就好了
{
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"args": ["-noLogo"]
}
},
}
复制代码