Skip to content

Instantly share code, notes, and snippets.

@byBretema
Last active August 5, 2018 10:35
Show Gist options
  • Save byBretema/f94acd510eb2d5332962aa70e21b17e6 to your computer and use it in GitHub Desktop.
Save byBretema/f94acd510eb2d5332962aa70e21b17e6 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
2gua.rainbow-brackets
bbenoist.Doxygen
CADENAS.vscode-glsllint
christian-kohler.path-intellisense
cschlosser.doxdocgen
dbaeumer.vscode-eslint
Gimly81.matlab
James-Yu.latex-workshop
kevinehmry.heatscript
kriegalex.vscode-cudacpp
monokai.theme-monokai-pro-vscode
MS-CEINTL.vscode-language-pack-es
ms-mssql.mssql
ms-python.python
ms-vscode.cpptools
ms-vscode.csharp
ms-vscode.Go
ms-vscode.PowerShell
patrys.vscode-code-outline
PeterJausovec.vscode-docker
reloadedextensions.reloaded-cpp
reloadedextensions.reloaded-themes
ritwickdey.LiveServer
robertohuertasm.vscode-icons
Rubymaniac.vscode-paste-and-indent
slevesque.shader
slevesque.vscode-3dviewer
slevesque.vscode-zipexplorer
tinkertrain.theme-panda
zhuangtongfa.Material-theme
// Coloque sus enlaces de teclado en este archivo para sobrescribir los valores predeterminados.
[
{
"key": "ctrl+d",
"command": "editor.action.deleteLines",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+k",
"command": "-editor.action.deleteLines",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+right",
"command": "workbench.action.terminal.scrollToBottom",
"when": "terminalFocus"
},
{
"key": "ctrl+end",
"command": "-workbench.action.terminal.scrollToBottom",
"when": "terminalFocus"
},
{
"key": "ctrl+left",
"command": "workbench.action.terminal.scrollToTop",
"when": "terminalFocus"
},
{
"key": "ctrl+home",
"command": "-workbench.action.terminal.scrollToTop",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+g",
"command": "editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
{
"key": "ctrl+d",
"command": "-editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
{
"key": "ctrl+shift+g",
"command": "workbench.action.gotoLine"
},
{
"key": "ctrl+g",
"command": "-workbench.action.gotoLine"
},
{
"key": "ctrl+right",
"command": "cursorEnd",
"when": "editorTextFocus"
},
{
"key": "end",
"command": "-cursorEnd",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+right",
"command": "cursorEndSelect",
"when": "editorTextFocus"
},
{
"key": "shift+end",
"command": "-cursorEndSelect",
"when": "editorTextFocus"
},
{
"key": "ctrl+left",
"command": "cursorHome",
"when": "editorTextFocus"
},
{
"key": "home",
"command": "-cursorHome",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+left",
"command": "cursorHomeSelect",
"when": "editorTextFocus"
},
{
"key": "shift+home",
"command": "-cursorHomeSelect",
"when": "editorTextFocus"
},
{
"key": "alt+left",
"command": "cursorWordStartLeft",
"when": "editorTextFocus"
},
{
"key": "ctrl+left",
"command": "-cursorWordStartLeft",
"when": "editorTextFocus"
},
{
"key": "shift+alt+left",
"command": "cursorWordStartLeftSelect",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+left",
"command": "-cursorWordStartLeftSelect",
"when": "editorTextFocus"
},
{
"key": "shift+alt+right",
"command": "cursorWordEndRightSelect",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+right",
"command": "-cursorWordEndRightSelect",
"when": "editorTextFocus"
},
{
"key": "alt+right",
"command": "cursorWordEndRight",
"when": "editorTextFocus"
},
{
"key": "ctrl+right",
"command": "-cursorWordEndRight",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+l",
"command": "workbench.action.toggleMaximizedPanel"
},
{
"key": "ctrl+alt+l",
"command": "editor.action.selectHighlights",
"when": "editorFocus"
},
{
"key": "ctrl+shift+l",
"command": "-editor.action.selectHighlights",
"when": "editorFocus"
},
{
"key": "ctrl+shift+f5",
"command": "workbench.view.debug"
},
{
"key": "ctrl+shift+d",
"command": "-workbench.view.debug"
}
]
{
// FILES
"files.eol": "\n",
"files.autoSaveDelay": 500,
"files.insertFinalNewline": true,
"files.autoSave": "onFocusChange",
"files.trimTrailingWhitespace": true,
"files.hotExit": "onExitAndWindowClose",
"files.trimFinalNewlines": true,
// WINDOW
"window.zoomLevel": 0,
"window.restoreWindows": "all",
"window.restoreFullscreen": true,
"workbench.statusBar.visible": true,
"window.menuBarVisibility": "hidden",
"window.openFilesInNewWindow": "off",
"window.openFoldersInNewWindow": "default",
// WORKBENCH
"workbench.iconTheme": "vscode-icons",
"workbench.startupEditor": "welcomePage",
"workbench.quickOpen.closeOnFocusLost": true,
"workbench.statusBar.feedback.visible": false,
"workbench.commandPalette.preserveInput": true,
"workbench.colorTheme": "Reloaded Dark [Default]",
"workbench.editor.enablePreviewFromQuickOpen": true,
// EDITOR
"editor.fontSize": 15,
"editor.fontLigatures": true,
"editor.fontFamily": "FIRA CODE",
"editor.cursorStyle": "line",
"editor.cursorBlinking": "phase",
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderIndentGuides": true,
"editor.renderLineHighlight": "all",
"editor.renderWhitespace": "boundary",
"editor.scrollBeyondLastLine": true,
"editor.rulers": [
80,
120
],
"editor.folding": true,
"editor.wordWrap": "on",
"editor.tabCompletion": true,
"editor.wrappingIndent": "indent",
"editor.minimap.side": "left",
"editor.minimap.enabled": false,
"editor.minimap.renderCharacters": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"editor.insertSpaces": false,
"editor.autoClosingBrackets": true,
"editor.acceptSuggestionOnEnter": "off",
// TERMINAL
"terminal.integrated.fontSize": 15,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
// LANGS::WEB
"php.validate.run": "onType",
"markdown.preview.fontSize": 16,
"html.format.endWithNewline": true,
"css.lint.duplicateProperties": "warning",
"html.format.wrapAttributes": "force-aligned",
// LANGS::GO
"go.lintFlags": [],
"go.vetOnSave": "package",
"go.docsTool": "gogetdoc",
"go.buildOnSave": "package",
"go.formatTool": "goreturns",
"go.lintTool": "gometalinter",
"go.gopath": "C:\\Dac\\_devel\\go",
"go.autocompleteUnimportedPackages": true,
"go.useCodeSnippetsOnFunctionSuggest": true,
"go.goroot": "~\\scoop\\apps\\go\\current",
// LANGS::PYTHON
"python.linting.enabled": true,
"python.linting.pep8Enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": false,
"python.autoComplete.addBrackets": true,
"python.linting.pydocstyleEnabled": false,
// LANGS::C++
"C_Cpp.navigation.length": 80,
"C_Cpp.dimInactiveRegions": true,
"C_Cpp.clang_format_style": "file",
"C_Cpp.intelliSenseEngine": "Default",
"C_Cpp.workspaceParsingPriority": "medium",
"C_Cpp.clang_format_sortIncludes": false,
"C_Cpp.intelliSenseEngineFallback": "Enabled",
"C_Cpp.clang_format_fallbackStyle": "LLVM",
"C_Cpp.commentContinuationPatterns": [
"/**",
"///",
"// [ ]",
"// --> [ ]",
],
// LANGS::POWERSHELL
"[powershell]": {
"editor.codeLens": false
},
"powershell.codeFormatting.preset": "OTBS",
"powershell.integratedConsole.showOnStartup": false,
"powershell.powerShellExePath": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
// LANGS::C#
"csharp.format.enable": false,
"csharp.referencesCodeLens.enabled": true,
// LANGS::GLSL
"glsllint.glslangValidatorPath": "C:/Dac/_tools/glslangValidator.exe",
// GIT
"git.autofetch": true,
// ZEN MODE
"zenMode.hideTabs": false,
"zenMode.centerLayout": false,
"zenMode.hideStatusBar": true,
// OTHER STUFF
"pasteAndIndent.selectAfter": true,
"extensions.autoUpdate": true,
"extensions.ignoreRecommendations": false,
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"path-intellisense.showHiddenFiles": true,
"path-intellisense.extensionOnImport": true,
"path-intellisense.autoSlashAfterDirectory": true,
"liveServer.settings.donotShowInfoMsg": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment