JetBrains Mono 글꼴을 다운로드하여 설치했습니다 https://www.jetbrains.com/lp/mono/
VS 코드를 사용하도록 설정하려고합니다.
settings.json 파일에 다음 줄을 추가했습니다.
// Set the font
"editor.fontFamily": "Consolas, 'Courier New', monospace", // Copied from current settings
// Turn on font ligatures
"editor.fontLigatures": true, // Override default value of false
내 질문은 : editor.fontFamily
JetBrains를 사용 하려면 섹션에 무엇을 넣어야 합니까?
나는 "editor.fontFamily": "JetBrains, Consolas, 'Courier New', monospace"
성공하지 않고 노력했다 .
답변
VSCode 설정 (코드-> 환경 설정-> 설정)을 열고 사용자 설정 JSON 파일 끝에 추가하십시오.
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 13,
"editor.fontLigatures": true
답변
@Grekkq 및 @Gyliph가 제공 한 내용을 바탕으로 설정 한 모습입니다.
// Set the font
"editor.fontFamily": "'JetBrains Mono', Consolas, 'Courier New', monospace",
// Set the font size
"editor.fontSize": 13,
// Turn on font ligatures
"editor.fontLigatures": true,
// Set letter spacing
"editor.letterSpacing": 0.4,
// Enable smooth scrolling in the editor
"editor.smoothScrolling": true,
JetBrains Mono를 현재 글꼴 패밀리 목록에 추가하는 트릭 'JetBrains Mono'
은 작은 따옴표로 묶는 것입니다 (글꼴 이름에 공백이 있으므로).
답변
이것으로 충분합니다
"editor.fontFamily": "JetBrains Mono"
그리고 합자를 원한다면
"editor.fontLigatures": true
답변
먼저 환경 설정-> 설정-> 텍스트 편집기-> 글꼴을 입력하십시오.
그런 다음 설정을 클릭하고 편집 할 수 있습니다.
그런 다음 아래에서 볼 수 있듯이 설정을 편집 할 수 있습니다. 내 글꼴 설정은 다음과 같습니다 (JetBrains의 시각적 데모 포함).