Skip to content

Instantly share code, notes, and snippets.

@keb
Last active May 8, 2020 18:25
Show Gist options
  • Save keb/1be5c823a35eba5b59f08e90a4448392 to your computer and use it in GitHub Desktop.
Save keb/1be5c823a35eba5b59f08e90a4448392 to your computer and use it in GitHub Desktop.
vscode config

vscode configs

// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+`", // you could use "key": "ctrl+`", if you wish
"command": "workbench.action.closePanel",
// "when": "terminalFocus"
},
{
"key": "ctrl+`",
"command": "workbench.action.toggleMaximizedPanel",
"when": "!terminalFocus"
}
]
{
"workbench.activityBar.visible": false,
"workbench.startupEditor": "newUntitledFile",
"window.menuBarVisibility": "toggle",
"window.titleBarStyle": "custom",
"extensions.ignoreRecommendations": true,
"extensions.showRecommendationsOnlyOnDemand": true,
// VSCode Terminal Options
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"terminal.integrated.shellArgs.windows": [
"/k",
"C:\\bin\\cmder\\vendor\\init.bat"
],
// VSCode Styles
"workbench.colorCustomizations": {
// nord wave
"editor.background": "#191919",
"sideBar.background": "#171717",
"statusBar.background": "#191919",
"statusBar.border": "#191919",
"statusBar.foreground": "#496149",
"statusBar.debuggingBackground": "#191919",
"statusBar.debuggingForeground": "#496149",
"tab.activeBackground": "#191919",
"tab.inactiveBackground": "#191919",
"titleBar.activeBackground": "#191919",
"tab.border": "#191919",
"tab.hoverBackground": "#191919",
"editorGroupHeader.tabsBackground": "#191919",
"editor.lineHighlightBackground": "#232323",
"panel.background": "#191919",
"terminal.background": "#191919",
"sideBarTitle.foreground": "#496149",
"list.inactiveSelectionForeground": "#a5b4a5",
"list.hoverForeground": "#a5b4a5",
"gitDecoration.modifiedResourceForeground": "#747458"
// "sideBarSectionHeader.foreground": "#ff0000"
// sublime material theme
// "sideBar.border": "#2e3440"
// "sideBar.foreground": "#a3a3a3",
// "tab.inactiveForeground": "#a3a3a3",
// "titleBar.activeForeground": "#a3a3a3",
// "statusBar.background": "#3c3c3c",
// "statusBar.background": "#252526",
// "tab.inactiveBackground": "#2b2b2b",
// "titleBar.activeBackground": "#2b2b2b",
// "statusBar.background": "#2b2b2b",
// "sideBar.background": "#2b2b2b",
// "statusBar.foreground": "#a3a3a3",
// "scrollbarSlider.background": "#70707025",
// "scrollbarSlider.activeBackground": "#70707060",
// "scrollbarSlider.hoverBackground": "#70707050",
// "widget.shadow": "#00000000",
// "scrollbar.shadow": "#00000000",
// "panel.border": "#2b2b2b"
// "titleBar.activeBackground": "#292929"
},
// VSCode Explorer Options
"explorer.openEditors.visible": 0,
"explorer.confirmDelete": false,
"explorer.autoReveal": false,
// VSCode Editor Options
"editor.fontSize": 16,
"editor.fontFamily": "'Ubuntu Mono', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.minimap.enabled": false,
"editor.mouseWheelZoom": true,
"editor.renderWhitespace": "boundary",
"editor.lineHeight": 0,
// Markup Parsing
"files.associations": {
"*.eex": "html",
// "*.svelte": "html"
},
"emmet.includeLanguages": {
"razor": "html",
"HTML (Eex)": "html",
"javascript": "html",
// "javascript": "javascriptreact",
"jsp": "html",
"jspf": "html"
},
// C#
"csharp.referencesCodeLens.enabled": false,
// Elixir
"[elixir]": {
"editor.wordBasedSuggestions": false,
"editor.acceptSuggestionOnEnter": "on"
},
"elixirLS.suggestSpecs": false,
// PHP
"php-cs-fixer.rules": "@PhpCsFixer",
"php.suggest.basic": false,
"php-cs-fixer.executablePath": "${extensionPath}\\php-cs-fixer.phar",
"php-cs-fixer.lastDownload": 1563577313039,
"[php]": {
"editor.defaultFormatter": "junstyle.php-cs-fixer"
},
// JavaScript / TypeScript
// "typescript.validate.enable": false,
// "javascript.validate.enable": false,
"explorer.confirmDragAndDrop": false,
"scssFormatter.tabWidth": 4,
"svelte.plugin.css.diagnostics.enable": false,
"workbench.colorTheme": "Nord Wave"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment