🉑极致专攻-Shell-Optimize
极致专攻-Shell-Optimize
pwsh
预览
安装
不同于 Windows 自带的 Windows PowerShell,这个 PowerShell(也叫 posh/pwsh) 需要另行安装
配置环境变量:Path 里面+
D:\Game\Demo\PowerShell\
如果用 VScode 的话,实际上不设置环境变量也行,因为在 VScode 内需要指定 powershell 路径
Scoop 安装全自动,不需要配置.
scoop install pwsh
插件-配置
oh-my-posh
oh-my-posh (增强主题)
scoop install oh-my-posh
已经废弃的方式
Install-Module oh-my-posh
查看主题 / 使用
Get-PoshThemes
Get-PoshThemes $env:SCOOP\persist\oh-my-posh\themes用法: 在 pwsh 执行如下可以得到 pwsh 配置文件路径
在配置文件里面填写如下 (对应的 JSON 文件名就是想要启用的主题)
oh-my-posh init pwsh --config "$env:SCOOP/persist/oh-my-posh/themes/powerlevel10k_classic.omp.json" | Invoke-Expression
PoshFuck
PoshFuck, the fuck 的 pwsh 实现
安装: 不必在意格式,复制就行
Set-ExecutionPolicy RemoteSigned
iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/mattparkes/PoShFuck/master/Install-TheFucker.ps1'))Import-Module PoShFuck
用法: fuck
/ fuck!
/ WTF
/ Get-Fucked
posh-git
posh-git
(用于扩展 Posh 里的 Git 自动补全)
scoop install posh-git |
Import-Module posh-git |
PSReadline
PSReadline
(Windows 自带,可以直接使用)
预测显示历史命令 / 上下左右高级补全
# Enable Prediction History
Set-PSReadLineOption -PredictionSource History
### Advanced Autocompletion for arrow keys
Set-PSReadlineKeyHandler -Key UpArrow -Function HistorySearchBackward
Set-PSReadlineKeyHandler -Key DownArrow -Function HistorySearchForwardPosh中类似Linux形式补全
(按 Tab 自动补,非常实用)Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete
启用管理员模式
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Kernel" /v DisableTsx /t REG_DWORD /d 0 /f |
作用就是让右键文件时出现管理员权限
实际上没啥用,并不太推荐使用
这个东西与上面 PowerShell 没啥关系
报错
参数数量问题
ERROR Cannot process argument transformation on parameter 'ApplicationQuery'. Cannot convert value to type System.String. |
在写 powershell 脚本时遇到的, 需要把 args 遍历使用, 不然即使实际传进来的只有一个也会报错
function sci{ scoop install $args} |
zsh
安装
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" |
主题
在 ~/.zshrc
里面找到并更改:
ZSH_THEME="jonathan" |
借物表
暂无…
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 ⭐️齐下无贰⭐️!
评论