我想更改 Visual Studio Code for Mac 使用的默认终端应用程序。我认为这是偏好或设置 json 的一部分,但不确定。
7 回答
对于那些想要更改默认集成终端而不仅仅是外部的人,并添加custom themes
,显示git branch
你在哪个,以及文件是否需要staged or committed
例如。
请按照以下简短步骤操作:
确保您已安装这些:
安装一个powerline font
(我正在使用 Menlo,这是一种漂亮且非常流行的字体)。
去这里并点击
download
打开文件
点击
install font
(注意:没有这个,vscode集成终端将无法正确渲染主题)
通过运行以下命令打开.zshrc文件:
光盘〜; 代码.zshrc
将iTerm的主题更改为agnoster
:
按下
⌘f
可在.zshrc文件中打开搜索类型
ZSH_THEME
搜索直到找到实时代码,而不是注释掉的代码:)
编辑代码使它看起来像
ZSH_THEME="agnoster"
保存文件
使用快捷方式打开 vscode 设置:
⌘,
在 vscode 设置里面,你会看到两个面板。在右侧面板上粘贴:
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.shell.osx": "/bin/zsh",
"terminal.integrated.fontFamily": "Menlo for Powerline"
假设之前的设置是空的,它现在应该是这样的:
{
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.shell.osx": "/bin/zsh",
"terminal.integrated.fontFamily": "Menlo for Powerline"
}
完成的!享受您的新冰封终端
-(可选定制)-
如果您希望您的提示显示除您的用户名之外的其他内容,例如雷电,例如我的或您想要的任何内容
通过运行以下命令打开agnoster 主题:
cd ~/.oh-my-zsh/themes/ ; code agnoster.zsh-theme
按以下方式打开搜索:
⌘f
将此粘贴到搜索栏中:
prompt_segment black default "%(!.%{%F{yellow}%}.)$USER@%m"
要更改提示显示的内容,请仅编辑此部分:
$USER@%m
请勿更改此部分:
prompt_segment black default "%(!.%{%F{yellow}%}.)
总之,代码现在应该如下所示:
prompt_segment black default "%(!.%{%F{yellow}%}.) Insert here whatever your heart desires"
(注意:从技术上讲,您可以更改有关终端提示的所有内容,但为了保持简短和简单,我们只编辑了用户名部分)
好吧,我知道已经很晚了,但是您可以通过运行命令来更改它
Terminal: Select Default Shell
它更容易
来自视觉工作室代码博客:
// 64-bit cmd it available, otherwise 32-bit
"terminal.integrated.shell.windows":"C:\\Windows\\sysnative\\cmd.exe"
// 64-bit PowerShell if available, otherwise 32-bit
"terminal.integrated.shell.windows":"C:\\Windows\\sysnative\\WindowsPowerShell\\v1.0\\powershell.exe"
// Git Bash
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe"
// Bash on Ubuntu (on Windows)
"terminal.integrated.shell.windows": "C:\\Windows\\sysnative\\bash.exe"
参考:综合终端
不,但您可以在这里投票支持此功能:https ://visualstudio.uservoice.com/forums/293070-visual-studio-code