Skip to content

Instantly share code, notes, and snippets.

@nothke
Last active July 16, 2024 23:03
Show Gist options
  • Save nothke/5e9504e0e8c107eccb4a582085dd989e to your computer and use it in GitHub Desktop.
Save nothke/5e9504e0e8c107eccb4a582085dd989e to your computer and use it in GitHub Desktop.
My VS Code settings
{
"files.exclude": {
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.meta": true
},
"editor.renderWhitespace": "none",
"csharp.suppressDotnetInstallWarning": true,
"editor.renderControlCharacters": false,
"workbench.preferredHighContrastColorTheme": "Noctis High Contrast",
"workbench.preferredDarkColorTheme": "Visual Studio Dark",
"workbench.colorCustomizations": {
"[Default Dark+]": {
"editor.background": "#252628", // text editor
"editor.foreground": "#e0e0e0",
//"editor.background": "#252923", // text editor
"panel.background": "#161342", // terminal
"activityBar.background": "#000000", // icon bar on the left
"activityBar.foreground": "#0085c3", // active (or hovered) icon
"activityBar.activeBorder": "#00aeff", // line on the left of active button
"activityBar.activeBackground": "#000000", // active button background
"activityBar.inactiveForeground": "#434343", // inactive icon
"sideBar.background": "#1f1f1f", // file explorer
"sideBar.border": "#454545", // border between file explorer and the text editor
"titleBar.activeForeground": "#5e5e5e", // title/menu bar text
"titleBar.activeBackground": "#000000", // title/menu bar background
"tab.inactiveBackground": "#151515", // inactive text editor tab
"editorGroupHeader.tabsBackground": "#000000", // text editor tabs background
"statusBar.background": "#000000",
"statusBar.foreground": "#a5a5a5",
"editorGroupHeader.noTabsBackground": "#000000",
"editorLineNumber.foreground": "#717171",
"editorIndentGuide.background": "#000000",
"editorGroup.border": "#151515",
"scrollbarSlider.background": "#151515",
},
"[Material Neutral]": {
"panel.background": "#161342", // terminal
"sideBar.background": "#1d272b", // file explorer
"activityBar.foreground": "#7fcac3", // active (or hovered) icon
},
},
"editor.tokenColorCustomizations": {
"[Default Dark+]": {
"variables": "#e6e6e6",
"functions": "#ffe58f",
"comments": "#009b81",
//"comments": "#000000", // dark comments
"numbers": "#ffd900",
"keywords": "#e985cb",
//"strings": "#FF0000",
"types": "#a7ebe6",
"strings": "#eda774",
"textMateRules": [
{
"scope": "keyword",
"settings": {
"foreground": "#69bed6"
}
}
]
},
"[Material Neutral]": {
"comments": "#80a37d"
}
},
"editor.fontFamily": "'fira code regular', '=>', Consolas, 'Courier New', monospace", // Ubuntu Mono, Inconsolata SemiBold, 'perfect dos vga 437 win'
"editor.fontWeight": "normal",
"editor.fontSize": 16,
"editor.fontLigatures": true,
"editor.snippetSuggestions": "top",
"window.zoomLevel": 0,
//"editor.lineHeight": 1.6, // 1.6 or 0
"editor.mouseWheelZoom": true,
"editor.codeActionsOnSave": null,
"zenMode.centerLayout": true,
"colorize.languages": [
"css",
"sass",
"scss",
"less",
"postcss",
"sss",
"stylus",
"xml",
"svg",
"typescript",
"javascript"
],
"vscode-w3cvalidation.validator-token": "Fri, 04 Sep 2020 06:43:31 GMT",
"files.associations": {
"*.YAML-tmLanguage": "yaml"
},
"python.defaultInterpreterPath": "C:\\Users\\nothke\\AppData\\Local\\Programs\\Python\\Python37-32\\python.exe",
"[cpp]": {
//"c_"
"editor.wordBasedSuggestions": "off",
"editor.suggest.insertMode": "replace",
"editor.semanticHighlighting.enabled": true
},
"editor.bracketPairColorization.enabled": false,
"python.formatting.autopep8Args": [
"--ignore",
"E402"
],
"rust-analyzer.inlayHints.typeHints.enable": false,
"rust-analyzer.inlayHints.parameterHints.enable": false,
"rust-analyzer.lens.implementations.enable": false,
"editor.semanticTokenColorCustomizations": {
"enabled": true,
"rules": {
"*.mutable": {
"underline": false,
}
}
},
"editor.smoothScrolling": true,
"terminal.integrated.mouseWheelScrollSensitivity": 0.3,
"[python]": {
"editor.formatOnType": true,
"editor.defaultFormatter": "charliermarsh.ruff"
},
"dotnet.codeLens.enableReferencesCodeLens": false,
"workbench.colorTheme": "Visual Studio 2019 Dark",
"workbench.activityBar.location": "top",
"editor.lineHeight": 1.5,
"zig.path": "zig",
"zig.initialSetupDone": true,
"zig.buildOnSave": true,
"zig.zls.enableAutofix": true,
"zig.zls.enableInlayHints": false,
"zig.zls.warnStyle": true,
"zig.zls.enableSnippets": true,
"zig.zls.path": "zls",
"zig.zls.enableBuildOnSave": true,
"zig.zls.buildOnSaveStep": "check"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment