下载vscode;按「ctrl+,」打开设置,点击右上角的「Open Settings (JSON)」,打开「settings.json」文件; 然后粘贴(记得删掉头尾的「」符号): 「"terminal.integrated.profiles.windows": { "PowerShell": { "source": "PowerShell", "icon": "terminal-powershell" }, "Command Prompt": { "path": [ "${...
众所周知,windows系统自带的cmd终端,用起来相当难受,为了优化自己的生产力,git bash成为了最佳的解决方案,所以我想尝试一下zsh with git bash on vscode,顺便使用zsh的主题美化一下vscode终端,然后在vscode上愉悦的写代码。 二、安装git bash for windows: 下载地址:gitforwindows 跳转页面后翻到最底部 image.png ...
打开Terminal,并在上方标签栏点击下拉按钮找到设置,并点击,然后在左侧最下方点击打开JSON文件。 这个就是Windows Terminal的配置文件 在文件中增加"fontFace": "Cousine Nerd Font"注意上一行代码需要加逗号(字体可根据喜好自行更换),保存后重启 Terminal 即可生效。 美化VScode 终端 配置终端字体 打开设置(快捷键 CTRL+...
"terminal.integrated.shell.windows":"C:\\Users\\youname\\Applications\\git-for-windows-sdk\\msys2_shell.cmd", 此时在vscode内新建终端,会弹出git for windows SDK的窗口,它是独立的,并没有嵌入在vscode中。 为了让它嵌入vscode中,再vscode的配置文件中继续搜索:terminal.integrated.shellArgs.windows 2.jpg...
要在VSCode 和 Windows 终端中使用相同的终端,请遵循以下配置。 VS代码 将这些属性添加到用户setttings.json,这些配置是新添加的: { ... + "terminal.integrated.fontFamily": "MesloLGS NF", + "terminal.integrated.fontSize": 12, + "terminal.integrated.shellIntegration.enabled": true, + "terminal.int...
2. 在windows笔记本中,clone仓库,运行其中的install.ps1文件。 这样字体就安装好了。 最后,还需要在vscode中指定字体。 在settings.json中添加一行: 注意vscode terminal仅支持等宽(Monospace)字体。 这里我使用的是Roboto Mono for Powerline字体。 可以通过vscode修改主题配色。
2. 在windows笔记本中,clone仓库,运行其中的install.ps1文件。 这样字体就安装好了。 最后,还需要在vscode中指定字体。 在settings.json中添加一行: 注意vscode terminal仅支持等宽(Monospace)字体。 这里我使用的是Roboto Mono for Powerline字体。 可以通过vscode修改主题配色。
要在VSCode 和 Windows 终端中使用相同的终端,请遵循以下配置。 VS代码 将这些属性添加到用户setttings.json,这些配置是新添加的: { ... + "terminal.integrated.fontFamily": "MesloLGS NF", + "terminal.integrated.fontSize": 12, + "terminal.integrated.shellIntegration.enabled": true, ...
配置zsh终端打开VsCode open .zshrc 然后在弹出的文档末尾处添加如下代码 # open vs codefunctioncode {if[[$#= 0 ]]thenopen -a"Visual Studio Code"elselocalargPath="$1"[[$1= /* ]] && argPath="$1"|| argPath="$PWD/${1#./}"open -a"Visual Studio Code""$argPath"fi} ...
如果你想要在 git-bash 启动的时候自动采用 zsh,需要在 git-bash 中输入 vim ~/.bashrc(不会使用 vim 的话就用 vscode 打开,使用 code ~/.bashrc) ,加入这几行代码 if[ -t 1 ];then execzsh fi 然后输入命令 source~/.bashrc 这时候就差不多完成了,最后控制台输入 zsh --version 检查一下 ...