Skip to content

Instantly share code, notes, and snippets.

@Hecatoncheir
Last active October 16, 2017 13:01
Show Gist options
  • Select an option

  • Save Hecatoncheir/1199cb58c4cc26151f926eaa2a3ff19c to your computer and use it in GitHub Desktop.

Select an option

Save Hecatoncheir/1199cb58c4cc26151f926eaa2a3ff19c to your computer and use it in GitHub Desktop.
vscode
{
"editor.fontFamily": "Cousine, monospace",
"editor.fontSize": 14,
"editor.lineHeight": 24,
"editor.formatOnType": true,
"editor.cursorBlinking": "phase",
"editor.renderIndentGuides": true,
"editor.renderLineHighlight": "all",
"editor.wordWrap": "on",
"editor.tabCompletion": true,
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"dart.debugSdkLibraries": false,
"dart.debugExternalLibraries": false,
"dart.runPubGetOnPubspecChanges": false,
"dart.checkForSdkUpdates": false,
"vim.disableAnnoyingNeovimMessage": true,
"workbench.colorTheme": "Espresso Light UI",
// "go.gopath": "/Users/Ras/dev/go",
// "go.goroot": "/Users/Ras/dev/golang",
"go.useCodeSnippetsOnFunctionSuggest": true,
"go.autocompleteUnimportedPackages": true
}
[
{
"key": "ctrl+alt+f",
"command": "editor.action.format"
},
{
"key": "ctrl+alt+]",
"command": "editor.action.goToDeclaration"
},
{
"key": "ctrl+\\",
"command": "workbench.action.toggleSidebarVisibility"
},
{
"key": "ctrl+space",
"command": "editor.action.showHover",
"when": "vim.mode != 'Insert'"
},
{
"key": "ctrl+capslock ctrl+space",
"command": "editor.action.triggerSuggest",
"when": "vim.mode == 'Insert'"
},
{
"key": "ctrl+alt+[",
"command": "editor.action.previewDeclaration",
"when": "editorTextFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment