Last active
January 9, 2019 03:46
-
-
Save lessmost/980c50836d5693271c83ba4b19b7300f to your computer and use it in GitHub Desktop.
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
{ | |
// Defines VS Code's display language. | |
// See https://go.microsoft.com/fwlink/?LinkId=761051 for a list of supported languages. | |
"locale":"en" // Changes will not take effect until VS Code has been restarted. | |
} |
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
{ | |
"workbench.iconTheme": "vscode-icons", | |
"window.restoreFullscreen": true, | |
"projectManager.git.baseFolders": ["$home/Projects", "$home/Workspace"], | |
"projectManager.vscode.baseFolders": ["$home/Projects", "$home/Workspace"], | |
"vim.useSystemClipboard": true, | |
"vim.insertModeKeyBindings": [ | |
{ | |
"before": ["j", "j"], | |
"after": ["<Esc>"] | |
} | |
], | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": ["g", "p"], | |
"commands": ["editor.action.jumpToBracket"] | |
}, | |
{ | |
"before": ["g", "b"], | |
"commands": ["workbench.action.navigateBack"] | |
}, | |
{ | |
"before": ["g", "f"], | |
"commands": ["workbench.action.navigateForward"] | |
} | |
], | |
"workbench.statusBar.feedback.visible": false, | |
"problems.decorations.enabled": false, | |
"files.useExperimentalFileWatcher": true, | |
"telemetry.enableTelemetry": false, | |
"gitlens.advanced.telemetry.enabled": false, | |
"telemetry.enableCrashReporter": false, | |
"files.exclude": { | |
"**/node_modules": true | |
}, | |
"gitlens.mode.active": "zen", | |
"vim.disableExtension": false, | |
"editor.formatOnSave": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment