-
-
Save Hecatoncheir/1199cb58c4cc26151f926eaa2a3ff19c to your computer and use it in GitHub Desktop.
vscode
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
| { | |
| "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 | |
| } |
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
| [ | |
| { | |
| "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