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
进行设置。