Skip to content

Instantly share code, notes, and snippets.

@nothke
Last active October 20, 2023 18:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • 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": "#252923", // text editor
"panel.background": "#161342", // terminal
"activityBar.background": "#000000", // icon bar on the left
"activityBar.foreground": "#00aeff", // active (or hovered) icon
"activityBar.activeBorder": "#00aeff", // line on the left of active button
"activityBar.activeBackground": "#000000", // active button background
"activityBar.inactiveForeground": "#353535", // inactive icon
"sideBar.background": "#141414", // 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": "#404040",
"editorIndentGuide.background": "#000000",
"editorGroup.border": "#151515",
"scrollbarSlider.background": "#151515",
}
},
"editor.tokenColorCustomizations": {
"[Default Dark+]": {
"variables": "#e6e6e6",
"functions": "#ffe58f",
"comments": "#009b81", // Shit,
"numbers": "#ffd900",
"keywords": "#e985cb",
//"strings": "#FF0000",
"types": "#a7ebe6",
}
},
"editor.fontFamily": "Fira Code Medium, 'Fira Code Semibold', '=>', Consolas, 'Courier New', monospace", // Ubuntu Mono, Inconsolata SemiBold,
"editor.fontWeight": "normal",
"editor.fontSize": 16,
"editor.fontLigatures": true,
"editor.snippetSuggestions": "top",
"window.zoomLevel": 1,
"editor.letterSpacing": 0,
"editor.lineHeight": 0, // 1.8 or 0
"editor.mouseWheelZoom": true,
"editor.codeActionsOnSave": null,
"zenMode.centerLayout": true,
"colorize.languages": [
"css",
"sass",
"scss",
"less",
"postcss",
"sss",
"stylus",
"xml",
"svg",
"typescript",
"javascript"
],
"workbench.colorTheme": "Default Dark+",
"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": false,
"editor.suggest.insertMode": "replace",
"editor.semanticHighlighting.enabled": true
},
"editor.bracketPairColorization.enabled": true,
"python.formatting.autopep8Args": [
"--ignore",
"E402"
],
"zig.zigPath": "c:\\Users\\Ivan\\AppData\\Roaming\\Code\\User\\globalStorage\\ziglang.vscode-zig\\zig_install\\zig.exe",
"zig.zigVersion": "nightly-0.12.0-dev.415+5af5d87ad",
"zig.zls.enabled": true,
"zig.zls.path": "F:\\_Projects\\nothke\\zls\\zig-out\\bin\\zls.exe",
//"zig.zls.path": "c:\\Users\\Ivan\\AppData\\Roaming\\Code\\User\\globalStorage\\ziglang.vscode-zig\\zls_install\\zls.exe",
"zig.buildOnSave": true,
"zig.zls.enableInlayHints": false,
"rust-analyzer.inlayHints.typeHints.enable": false,
"editor.semanticTokenColorCustomizations": {
"enabled": true,
"rules": {
"*.mutable": {
"underline": false,
}
}
},
"terminal.integrated.smoothScrolling": true,
"terminal.integrated.mouseWheelScrollSensitivity": 0.5,
"dotnet.codeLens.enableReferencesCodeLens": false,
"editor.formatOnSave": true,
"liveServer.settings.donotShowInfoMsg": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment