Skip to content

Instantly share code, notes, and snippets.

@yurahuchok
Created December 21, 2023 03:18
Show Gist options
  • Save yurahuchok/c72b876de4ab4a6c8e32e2e0fbc92a39 to your computer and use it in GitHub Desktop.
Save yurahuchok/c72b876de4ab4a6c8e32e2e0fbc92a39 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"editor.fontFamily": "Input",
"editor.lineHeight": 1.7,
"editor.rulers": [120],
"workbench.colorTheme": "GitHub Dark",
"eslint.enable": false,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 500,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.recentChange.enabled": false,
"todohighlight.keywords": [
{
"text": "TODO",
"color": "#fff",
"backgroundColor": "#ffbd2a",
"overviewRulerColor": "rgba(255,189,42,0.8)"
},
{
"text": "FIXME",
"color": "#fff",
"backgroundColor": "#f06292",
"overviewRulerColor": "rgba(240,98,146,0.8)"
}
],
"workbench.preferredDarkColorTheme": "GitHub Light",
"workbench.preferredLightColorTheme": "GitHub Dark",
"window.commandCenter": false,
"extensions.ignoreRecommendations": true,
"editor.codeLens": false,
"editor.tabSize": 2,
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"terminal.integrated.localEchoStyle": "dim",
"terminal.integrated.fontFamily": "Hack Nerd Font",
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": false,
"scminput": false
},
"diffEditor.ignoreTrimWhitespace": false,
"window.newWindowDimensions": "inherit",
"editor.fontSize": 14,
"window.zoomLevel": -0.65,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment