Last active
May 8, 2018 13:14
-
-
Save feliperohdee/59d16d309c08430c5be55062bde0cc3c to your computer and use it in GitHub Desktop.
100pila
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "beautify.config": { | |
| "js": { | |
| "e4x": true | |
| }, | |
| "css": { | |
| "selector_separator_newline": true, | |
| "newline_between_rules": true, | |
| "preserve_newlines": true, | |
| "end_with_newline": true | |
| } | |
| }, | |
| "explorer.openEditors.visible": 0, | |
| "workbench.editor.enablePreview": true, | |
| "workbench.editor.enablePreviewFromQuickOpen": true, | |
| "editor.fontSize": 13.3, | |
| "editor.minimap.enabled": false, | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "git.enableSmartCommit": true, | |
| "go.autocompleteUnimportedPackages": true, | |
| "go.lintOnSave": "off", | |
| "html.suggest.angular1": false, | |
| "javascript.format.enable": false, | |
| "javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true, | |
| "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true, | |
| "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true, | |
| "javascript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": true, | |
| "javascript.format.insertSpaceBeforeFunctionParenthesis": false, | |
| "javascript.format.placeOpenBraceOnNewLineForControlBlocks": true, | |
| "javascript.format.placeOpenBraceOnNewLineForFunctions": true, | |
| "javascript.validate.enable": false, | |
| "problems.decorations.enabled": false, | |
| "workbench.colorCustomizations": { | |
| "[Monokai]": { | |
| "activityBar.background": "#17191a", | |
| "activityBar.border": "#363738", | |
| "badge.background": "#17191a", | |
| "editor.background": "#26292e", | |
| "editorGroupHeader.tabsBackground": "#17191a", | |
| "editorHoverWidget.background": "#17191a", | |
| "editorHoverWidget.border": "#363738", | |
| "focusBorder": "#00000000", | |
| "gitDecoration.modifiedResourceForeground": "#55bbff", | |
| "input.background": "#17191a", | |
| "list.activeSelectionBackground": "#414343", | |
| "list.hoverBackground": "#414343", | |
| "sideBar.background": "#17191a", | |
| "sideBar.foreground": "#fff", | |
| "statusBar.background": "#17191a", | |
| "statusBar.border": "#363738", | |
| "statusBar.debuggingBackground": "#007e26", | |
| "statusBar.debuggingBorder": "#363738", | |
| "statusBarItem.activeBackground": "#00000010", | |
| "tab.activeBackground": "#26292e", | |
| "tab.activeForeground": "#ffffff", | |
| "tab.inactiveBackground": "#00000000", | |
| "tab.inactiveForeground": "#ffffff69", | |
| "terminal.background": "#000", | |
| "editor.findMatchHighlightBackground": "#d7006baf", | |
| "editor.findMatchBackground": "#d7006c" | |
| } | |
| }, | |
| "workbench.colorTheme": "Monokai", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.startupEditor": "newUntitledFile", | |
| "vscode_custom_css.imports": [ | |
| "file:///Users/feliperohde/Dropbox/VsCode/User/extend.css" | |
| ], | |
| "explorer.confirmDragAndDrop": false, | |
| "window.restoreFullscreen": true, | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Place your key bindings in this file to overwrite the defaults | |
| [ | |
| { | |
| "key": "shift+cmd+down", | |
| "command": "editor.action.copyLinesDownAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift+alt+down", | |
| "command": "-editor.action.copyLinesDownAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift+cmd+up", | |
| "command": "editor.action.copyLinesUpAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift+alt+up", | |
| "command": "-editor.action.copyLinesUpAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift+cmd+f", | |
| "command": "HookyQR.beautifyFile" | |
| }, | |
| { | |
| "key": "shift+cmd+f", | |
| "command": "HookyQR.beautify" | |
| }, | |
| { | |
| "key": "shift+cmd+m", | |
| "command": "editor.action.selectToBracket" | |
| }, | |
| { | |
| "key": "cmd+m", | |
| "command": "editor.action.jumpToBracket", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "shift+cmd+\\", | |
| "command": "-editor.action.jumpToBracket", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "cmd+g", | |
| "command": "workbench.action.gotoLine" | |
| }, | |
| { | |
| "key": "ctrl+g", | |
| "command": "-workbench.action.gotoLine" | |
| }, | |
| { | |
| "key": "ctrl+cmd+down", | |
| "command": "editor.action.moveLinesDownAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+down", | |
| "command": "-editor.action.moveLinesDownAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+cmd+up", | |
| "command": "editor.action.moveLinesUpAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+up", | |
| "command": "-editor.action.moveLinesUpAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+d", | |
| "command": "editor.action.goToDeclaration", | |
| "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor" | |
| }, | |
| { | |
| "key": "f12", | |
| "command": "-editor.action.goToDeclaration", | |
| "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor" | |
| }, | |
| { | |
| "key": "cmd+t", | |
| "command": "workbench.action.quickOpen" | |
| }, | |
| { | |
| "key": "cmd+p", | |
| "command": "-workbench.action.quickOpen" | |
| }, | |
| { | |
| "key": "cmd+t", | |
| "command": "workbench.action.quickOpenNavigateNextInFilePicker", | |
| "when": "inFilesPicker && inQuickOpen" | |
| }, | |
| { | |
| "key": "cmd+p", | |
| "command": "-workbench.action.quickOpenNavigateNextInFilePicker", | |
| "when": "inFilesPicker && inQuickOpen" | |
| }, | |
| { | |
| "key": "shift+cmd+enter", | |
| "command": "workbench.action.toggleSidebarVisibility" | |
| }, | |
| { | |
| "key": "cmd+b", | |
| "command": "-workbench.action.toggleSidebarVisibility" | |
| }, | |
| { | |
| "key": "shift+cmd+.", | |
| "command": "workbench.action.toggleFullScreen" | |
| }, | |
| { | |
| "key": "ctrl+cmd+f", | |
| "command": "-workbench.action.toggleFullScreen" | |
| }, | |
| { | |
| "key": "shift+cmd+d", | |
| "command": "editor.action.selectHighlights", | |
| "when": "editorFocus" | |
| }, | |
| { | |
| "key": "shift+cmd+l", | |
| "command": "-editor.action.selectHighlights", | |
| "when": "editorFocus" | |
| }, | |
| { | |
| "key": "cmd+delete", | |
| "command": "-deleteAllRight", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+backspace", | |
| "command": "-workbench.action.terminal.deleteWordLeft", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "cmd+backspace", | |
| "command": "deleteWordLeft", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+backspace", | |
| "command": "-deleteWordLeft", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+delete", | |
| "command": "-deleteWordRight", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+delete", | |
| "command": "-workbench.action.terminal.deleteWordRight", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "shift+cmd+backspace", | |
| "command": "deleteLeft", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "delete", | |
| "command": "-deleteRight", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+d", | |
| "command": "-deleteRight", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+delete", | |
| "command": "-deleteRight", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+h", | |
| "command": "-deleteLeft", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift+backspace", | |
| "command": "-deleteLeft", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+backspace", | |
| "command": "-deleteLeft", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+k", | |
| "command": "-deleteAllRight", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift+cmd+backspace", | |
| "command": "deleteAllLeft", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "cmd+backspace", | |
| "command": "-deleteAllLeft", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+f5", | |
| "command": "editor.action.sortLinesAscending" | |
| }, | |
| { | |
| "key": "ctrl+f6", | |
| "command": "editor.action.sortLinesDescending" | |
| }, | |
| { | |
| "key": "shift+cmd+s", | |
| "command": "workbench.action.files.saveAll" | |
| }, | |
| { | |
| "key": "alt+cmd+s", | |
| "command": "-workbench.action.files.saveAll" | |
| }, | |
| { | |
| "key": "cmd+e", | |
| "command": "workbench.action.showAllSymbols" | |
| }, | |
| { | |
| "key": "cmd+t", | |
| "command": "-workbench.action.showAllSymbols" | |
| }, | |
| { | |
| "key": "alt+s", | |
| "command": "editor.action.insertSnippet" | |
| }, | |
| { | |
| "key": "cmd+,", | |
| "command": "editor.action.outdentLines", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "cmd+[", | |
| "command": "-editor.action.outdentLines", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "cmd+.", | |
| "command": "editor.action.indentLines", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "cmd+]", | |
| "command": "-editor.action.indentLines", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "cmd+r", | |
| "command": "workbench.action.gotoSymbol" | |
| }, | |
| { | |
| "key": "shift+cmd+o", | |
| "command": "-workbench.action.gotoSymbol" | |
| }, | |
| { | |
| "key": "cmd+2", | |
| "command": "workbench.action.moveEditorToSecondGroup" | |
| }, | |
| { | |
| "key": "ctrl+cmd+2", | |
| "command": "-workbench.action.moveEditorToSecondGroup" | |
| }, | |
| { | |
| "key": "cmd+3", | |
| "command": "workbench.action.moveEditorToThirdGroup" | |
| }, | |
| { | |
| "key": "ctrl+cmd+3", | |
| "command": "-workbench.action.moveEditorToThirdGroup" | |
| }, | |
| { | |
| "key": "shift+alt+cmd+left", | |
| "command": "-workbench.action.moveActiveEditorGroupLeft" | |
| }, | |
| { | |
| "key": "shift+alt+cmd+right", | |
| "command": "-workbench.action.moveActiveEditorGroupRight" | |
| }, | |
| { | |
| "key": "cmd+1", | |
| "command": "workbench.action.moveEditorToFirstGroup" | |
| }, | |
| { | |
| "key": "ctrl+cmd+1", | |
| "command": "-workbench.action.moveEditorToFirstGroup" | |
| }, | |
| { | |
| "key": "ctrl+cmd+right", | |
| "command": "-workbench.action.moveEditorToNextGroup" | |
| }, | |
| { | |
| "key": "ctrl+cmd+left", | |
| "command": "-workbench.action.moveEditorToPreviousGroup" | |
| }, | |
| { | |
| "key": "shift+alt+cmd+left", | |
| "command": "-cursorColumnSelectLeft", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "shift+alt+cmd+right", | |
| "command": "-cursorColumnSelectRight", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "shift+alt+cmd+down", | |
| "command": "-cursorColumnSelectDown", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "shift+alt+cmd+up", | |
| "command": "-cursorColumnSelectUp", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "cmd+k left", | |
| "command": "-workbench.action.moveActiveEditorGroupLeft" | |
| }, | |
| { | |
| "key": "cmd+k right", | |
| "command": "-workbench.action.moveActiveEditorGroupRight" | |
| }, | |
| { | |
| "key": "ctrl+down", | |
| "command": "editor.emmet.action.decrementNumberByOne" | |
| }, | |
| { | |
| "key": "ctrl+up", | |
| "command": "editor.emmet.action.incrementNumberByOne" | |
| }, | |
| { | |
| "key": "ctrl+shift+up", | |
| "command": "editor.emmet.action.incrementNumberByTen" | |
| }, | |
| { | |
| "key": "ctrl+shift+down", | |
| "command": "editor.emmet.action.decrementNumberByTen" | |
| }, | |
| { | |
| "key": "alt+down", | |
| "command": "editor.emmet.action.decrementNumberByOneTenth" | |
| }, | |
| { | |
| "key": "alt+up", | |
| "command": "editor.emmet.action.incrementNumberByOneTenth" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment