欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vs code的设置

程序员文章站 2024-01-13 15:15:22
...

字体形式与大小

字体使用等宽字体:Source Code Pro
下载Source Code Pro字体

cd /usr/share/fonts/truetype/
sudo git clone https://github.com/adobe-fonts/source-code-pro.git

然后在settings. json文件配置如下:

{
    "terminal.integrated.shell.osx": "/bin/zsh",
    "terminal.integrated.fontFamily": "Source Code Pro, 'Source Code Pro Italic' ",
    "terminal.integrated.fontSize": 15,
    "terminal.explorerKind": "external",
    "terminal.external.osxExec": "iTerm.app",
    "editor.fontFamily": "Source Code Pro, 'Source Code Pro Italic' ",
    "editor.fontSize": 15,
}

设置默认换行符为LF

设置 -> 用户设置 -> 文本编辑器 -> 文件 -> eol ->

设置为\n

或者直接搜索 files:eol 进行设置。