Created
August 7, 2019 18:07
-
-
Save joneskoo/1c754ef9dc2ec35208c1c3cdfc1c3c22 to your computer and use it in GitHub Desktop.
VS code prefs
This file contains 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+l", | |
"command": "editor.action.insertCursorAtEndOfEachLineSelected", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "shift+cmd+c", | |
"command": "workbench.action.terminal.toggleTerminal" | |
}, | |
{ | |
"key": "shift+cmd+7", | |
"command": "editor.action.commentLine", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+t", | |
"command": "go.test.package", | |
"when": "editorTextFocus" | |
} | |
] |
This file contains 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 settings in this file to overwrite the default settings | |
{ | |
"editor.autoClosingBrackets": "never", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 13, | |
"editor.rulers": [80, 120], | |
"editor.tabSize": 8, | |
"explorer.autoReveal": true, | |
"explorer.openEditors.visible": 0, | |
"explorer.sortOrder": "mixed", | |
"explorer.confirmDragAndDrop": false, | |
"files.trimTrailingWhitespace": true, | |
"files.exclude": { | |
"**/._*": true, | |
"**/.DS_Store": true, | |
"**/.svn": true, | |
"**/*.mo": true | |
}, | |
"window.nativeTabs": true, | |
"window.openFilesInNewWindow": "on", | |
"window.zoomLevel": 0, | |
"workbench.editor.openPositioning": "left", | |
"workbench.startupEditor": "newUntitledFile", | |
"git.countBadge": "tracked", | |
"go.buildOnSave": "package", | |
"go.lintOnSave": "workspace", | |
"go.vetOnSave": "workspace", | |
"go.coverOnSave": false, | |
"go.useCodeSnippetsOnFunctionSuggest": true, | |
"go.gopath": "/Users/joneskoo", | |
"editor.renderControlCharacters": false, | |
"editor.renderWhitespace": "all", | |
"extensions.ignoreRecommendations": false, | |
"extensions.showRecommendationsOnlyOnDemand": true, | |
"search.location": "panel", | |
"workbench.colorTheme": "Monokai" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment