Skip to content

Instantly share code, notes, and snippets.

@joneskoo
Created August 7, 2019 18:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joneskoo/1c754ef9dc2ec35208c1c3cdfc1c3c22 to your computer and use it in GitHub Desktop.
Save joneskoo/1c754ef9dc2ec35208c1c3cdfc1c3c22 to your computer and use it in GitHub Desktop.
VS code prefs
// 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"
}
]
// 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