Skip to content

Instantly share code, notes, and snippets.

@SLIB53
Created February 22, 2024 16:49
Show Gist options
  • Save SLIB53/86f38b6dda84ed191a07f1624fa4eaac to your computer and use it in GitHub Desktop.
Save SLIB53/86f38b6dda84ed191a07f1624fa4eaac to your computer and use it in GitHub Desktop.
{
"security.workspace.trust.enabled": false,
"window.newWindowDimensions": "offset",
"window.restoreWindows": "none",
"window.title": "${dirty}${rootName}",
"zenMode.fullScreen": false,
"zenMode.centerLayout": false,
"zenMode.hideLineNumbers": false,
"zenMode.showTabs": "none",
"workbench.settings.editor": "json",
"workbench.startupEditor": "none",
"window.autoDetectColorScheme": true,
"workbench.colorTheme": "GitHub Dark Default",
"workbench.preferredLightColorTheme": "GitHub Light Default",
"workbench.preferredDarkColorTheme": "GitHub Dark Default",
"workbench.productIconTheme": "material-product-icons",
"workbench.iconTheme": "material-icon-theme",
"material-icon-theme.folders.theme": "specific",
"material-icon-theme.folders.color": "#A0A0A0",
"material-icon-theme.activeIconPack": "none",
"material-icon-theme.saturation": 0.6,
"material-icon-theme.opacity": 0.7,
"material-icon-theme.hidesExplorerArrows": true,
"workbench.sideBar.location": "right",
"workbench.tree.indent": 16,
"workbench.tree.renderIndentGuides": "onHover",
"explorer.autoReveal": false,
"explorer.confirmDelete": false,
"explorer.compactFolders": false,
"debug.toolBarLocation": "floating",
"extensions.ignoreRecommendations": true,
"workbench.editor.showTabs": "single",
"workbench.editor.closeEmptyGroups": false,
"workbench.editor.splitSizing": "split",
"breadcrumbs.symbolSortOrder": "position",
"workbench.editor.decorations.badges": true,
"workbench.editor.decorations.colors": true,
"editor.padding.top": 3,
"editor.padding.bottom": 21,
"editor.minimap.enabled": false,
"editor.minimap.size": "fit",
"editor.minimap.renderCharacters": false,
"editor.minimap.showSlider": "mouseover",
"editor.minimap.maxColumn": 80,
"editor.rulers": [
{
"column": 80,
"color": "#1E232A3F"
},
{
"column": 100,
"color": "#1E232A3F"
},
{
"column": 120,
"color": "#1E232A3F"
}
],
"editor.lineHeight": 21,
"editor.guides.indentation": false,
"editor.renderLineHighlight": "gutter",
"editor.fontFamily": "Fira Code, Consolas, Menlo, Monospace",
"editor.fontLigatures": true,
"editor.fontSize": 13,
"editor.renderWhitespace": "selection",
"editor.cursorSurroundingLines": 5,
"editor.cursorStyle": "underline",
"editor.cursorBlinking": "phase",
"editor.suggest.preview": true,
"editor.inlineSuggest.enabled": true,
"editor.scrollbar.horizontal": "hidden",
"editor.scrollbar.vertical": "visible",
"editor.scrollbar.verticalScrollbarSize": 3,
"editor.smoothScrolling": true,
"editor.scrollBeyondLastLine": false,
"editor.overviewRulerBorder": false,
"debug.showBreakpointsInOverviewRuler": true,
"editor.suggestSelection": "first",
"diffEditor.renderSideBySide": true,
"diffEditor.ignoreTrimWhitespace": false,
"terminal.integrated.shellIntegration.decorationsEnabled": "overviewRuler",
"terminal.integrated.cursorStyle": "underline",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.fontSize": 14,
"terminal.integrated.defaultProfile.windows": "Ubuntu (WSL)",
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"Git Bash": {
"source": "Git Bash"
},
"Ubuntu (WSL)": {
"path": "C:\\Windows\\System32\\wsl.exe",
"args": ["-d", "Ubuntu"]
}
},
"debug.console.fontSize": 14,
"debug.console.fontFamily": "Fira Code, Consolas, Menlo, Monospace",
"[markdown]": {
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 80,
"editor.lineNumbers": "on",
"editor.rulers": [
{
"column": 80,
"color": "#1E232A3F"
}
],
"editor.tabSize": 4,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
},
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "advanced",
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[csharp]": {
"editor.codeLens": false,
"editor.codeLensFontFamily": "Fira Code",
"editor.codeLensFontSize": 8,
"editor.rulers": [
{
"column": 100,
"color": "#1E232A3F"
},
{
"column": 120,
"color": "#1E232A3F"
}
]
},
"[python]": {
"editor.formatOnType": true,
"editor.defaultFormatter": "ms-python.black-formatter"
},
"notebook.lineNumbers": "on",
"godot_tools.gdscript_lsp_server_host": "127.0.0.1",
"godot_tools.gdscript_lsp_server_port": 6005,
"redhat.telemetry.enabled": false,
"github.copilot.enable": {
"*": true,
"plaintext": true,
"markdown": true,
"scminput": false,
"yaml": true,
"csharp": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment