Skip to content

Instantly share code, notes, and snippets.

@robbdimitrov
Last active March 15, 2022 16:31
Show Gist options
  • Save robbdimitrov/3b6406fda7c271050c96c5ff9c0ae8ca to your computer and use it in GitHub Desktop.
Save robbdimitrov/3b6406fda7c271050c96c5ff9c0ae8ca to your computer and use it in GitHub Desktop.
Visual Studio Code settings
[
{
"key": "shift+enter",
"command": "workbench.action.terminal.findPrevious",
"when": "terminalFindFocused && terminalProcessSupported"
},
{
"key": "enter",
"command": "workbench.action.terminal.findNext",
"when": "terminalFindFocused && terminalProcessSupported"
}
]
{
"editor.rulers": [80],
"editor.tabSize": 2,
"editor.suggestSelection": "first",
"editor.detectIndentation": true,
"extensions.ignoreRecommendations": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.exclude": {
"**/.angular": true,
"**/.bin": true,
"**/.project": true,
"**/.settings": true,
"**/.vscode": true,
"**/bin": true,
"**/build": true,
"**/target": true
},
"go.toolsGopath": "~/.go",
"go.useLanguageServer": true,
"go.toolsManagement.autoUpdate": true,
"terminal.integrated.persistentSessionReviveProcess": "never",
"workbench.startupEditor": "newUntitledFile",
"[markdown]": {
"files.trimTrailingWhitespace": false
},
"[go]": {
"editor.insertSpaces": false,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.tabSize": 4
},
"[rust]": {
"editor.tabSize": 4
},
"[makefile]": {
"editor.insertSpaces": false,
"editor.tabSize": 4
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment