Last active
April 10, 2024 09:16
-
-
Save douknow/eae657279d43cd71504c021facb15e34 to your computer and use it in GitHub Desktop.
Custom VSCode use 'Operator Mono' font for italic font style and 'Fira Code' for other font styles.(I used theme is Palenight Operator)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"window.zoomLevel": 0, | |
"editor.fontSize": 15, | |
"editor.fontFamily": "'Fira Code', Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.lineHeight": 36, | |
"workbench.colorTheme": "Palenight Operator", | |
"dart.debugExternalLibraries": false, | |
"dart.debugSdkLibraries": false, | |
"vscode_custom_css.imports": [ | |
"file:///Users/[your user name]/.vscode/vscode.css" | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.mtki:not(.mtk13) { | |
font-family: 'Operator Mono' !important; | |
font-size: 1.1em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The result!
CSS
Swift