Skip to content

Instantly share code, notes, and snippets.

@spacepluk
Created October 21, 2018 11:08
Show Gist options
  • Save spacepluk/4dc59e8ca397c45dbcafab7b61ceeb3e to your computer and use it in GitHub Desktop.
Save spacepluk/4dc59e8ca397c45dbcafab7b61ceeb3e to your computer and use it in GitHub Desktop.
vscode settings
{
"workbench.colorTheme": "Monokai Pro",
"workbench.iconTheme": "vscode-great-icons",
"workbench.activityBar.visible": false,
"window.zoomLevel": 0,
"window.titleBarStyle": "custom",
"window.menuBarVisibility": "toggle",
"zenMode.centerLayout": false,
"editor.codeLens": false,
"editor.fontFamily": "'Ubuntu Mono', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.fontSize": 16,
"editor.lineHeight": 17,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.minimap.enabled": false,
"diffEditor.renderSideBySide": false,
"gitlens.historyExplorer.enabled": true,
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"C_Cpp.default.compileCommands": "./build/compile_commands.json",
"files.associations": {
"*.qrc": "xml",
"*.{unity,asset,meta}": "yaml"
},
"terminal.integrated.shellArgs.linux": [
"-c",
"tmux"
],
"terminal.integrated.commandsToSkipShell": [
"editor.action.toggleTabFocusMode",
"workbench.action.debug.continue",
"workbench.action.debug.pause",
"workbench.action.debug.restart",
"workbench.action.debug.run",
"workbench.action.debug.start",
"workbench.action.debug.stepInto",
"workbench.action.debug.stepOut",
"workbench.action.debug.stepOver",
"workbench.action.debug.stop",
"workbench.action.firstEditorInGroup",
"workbench.action.focusActiveEditorGroup",
"workbench.action.focusEighthEditorGroup",
"workbench.action.focusFifthEditorGroup",
"workbench.action.focusFirstEditorGroup",
"workbench.action.focusFourthEditorGroup",
"workbench.action.focusLastEditorGroup",
"workbench.action.focusSecondEditorGroup",
"workbench.action.focusSeventhEditorGroup",
"workbench.action.focusSixthEditorGroup",
"workbench.action.focusThirdEditorGroup",
"workbench.action.lastEditorInGroup",
"workbench.action.openNextRecentlyUsedEditorInGroup",
"workbench.action.openPreviousRecentlyUsedEditorInGroup",
"workbench.action.quickOpenPreviousEditor",
"workbench.action.quickOpenView",
"workbench.action.showCommands",
"workbench.action.tasks.build",
"workbench.action.tasks.restartTask",
"workbench.action.tasks.runTask",
"workbench.action.tasks.showLog",
"workbench.action.tasks.showTasks",
"workbench.action.tasks.terminate",
"workbench.action.tasks.test",
"workbench.action.terminal.clear",
"workbench.action.terminal.clearSelection",
"workbench.action.terminal.copySelection",
"workbench.action.terminal.deleteWordLeft",
"workbench.action.terminal.deleteWordRight",
"workbench.action.terminal.findNextTerminalFocus",
"workbench.action.terminal.findPreviousTerminalFocus",
"workbench.action.terminal.focus",
"workbench.action.terminal.focusAtIndex1",
"workbench.action.terminal.focusAtIndex2",
"workbench.action.terminal.focusAtIndex3",
"workbench.action.terminal.focusAtIndex4",
"workbench.action.terminal.focusAtIndex5",
"workbench.action.terminal.focusAtIndex6",
"workbench.action.terminal.focusAtIndex7",
"workbench.action.terminal.focusAtIndex8",
"workbench.action.terminal.focusAtIndex9",
"workbench.action.terminal.focusFindWidget",
"workbench.action.terminal.focusNext",
"workbench.action.terminal.focusNextPane",
"workbench.action.terminal.focusPrevious",
"workbench.action.terminal.focusPreviousPane",
"workbench.action.terminal.hideFindWidget",
"workbench.action.terminal.kill",
"workbench.action.terminal.moveToLineEnd",
"workbench.action.terminal.moveToLineStart",
"workbench.action.terminal.new",
"workbench.action.terminal.newInActiveWorkspace",
"workbench.action.terminal.paste",
"workbench.action.terminal.resizePaneDown",
"workbench.action.terminal.resizePaneLeft",
"workbench.action.terminal.resizePaneRight",
"workbench.action.terminal.resizePaneUp",
"workbench.action.terminal.runActiveFile",
"workbench.action.terminal.runSelectedText",
"workbench.action.terminal.scrollDown",
"workbench.action.terminal.scrollDownPage",
"workbench.action.terminal.scrollToBottom",
"workbench.action.terminal.scrollToNextCommand",
"workbench.action.terminal.scrollToPreviousCommand",
"workbench.action.terminal.scrollToTop",
"workbench.action.terminal.scrollUp",
"workbench.action.terminal.scrollUpPage",
"workbench.action.terminal.selectAll",
"workbench.action.terminal.selectToNextCommand",
"workbench.action.terminal.selectToNextLine",
"workbench.action.terminal.selectToPreviousCommand",
"workbench.action.terminal.selectToPreviousLine",
"workbench.action.terminal.sendSequence",
"workbench.action.terminal.split",
"workbench.action.terminal.splitInActiveWorkspace",
"workbench.action.terminal.toggleFindCaseSensitiveTerminalFocus",
"workbench.action.terminal.toggleFindRegexTerminalFocus",
"workbench.action.terminal.toggleFindWholeWordTerminalFocus",
"workbench.action.terminal.toggleTerminal",
"workbench.action.toggleFullScreen",
"workbench.action.toggleMaximizedPanel",
"workbench.action.togglePanel"
],
"vim.leader": "<space>",
"vim.foldfix": true,
"vim.sneak": true,
"vim.statusBarColorControl": false,
"vim.disableExtension": false,
"vim.handleKeys": {
"<C-b>": false,
"<C-f>": true
},
"vim.normalModeKeyBindingsNonRecursive": [
{
"before":["leader", "leader"],
"after": [],
"commands": [
{
"command": "workbench.action.showCommands"
}
]
},
{
"before":["leader", "e", "e"],
"after": [],
"commands": [
{
"command": "workbench.view.explorer"
}
]
},
{
"before":["leader", "f", "f"],
"after": [],
"commands": [
{
"command": "workbench.view.search"
}
]
},
{
"before":["leader", "g", "s"],
"commands": [
{
"command": "workbench.view.scm"
}
]
},
{
"before":["leader", "g", "l"],
"commands": [
{
"command": "gitlens.showGitExplorer"
}
]
},
{
"before":["leader", "g", "d"],
"commands": [
{
"command": "git.openChange"
}
]
},
{
"before":["leader", "d", "d"],
"after": [],
"commands": [
{
"command": "workbench.view.debug"
}
]
},
{
"before":["leader", "x", "x"],
"after": [],
"commands": [
{
"command": "workbench.view.extensions"
}
]
},
{
"before":["leader", "k"],
"after": [],
"commands": [
{
"command": "workbench.action.keepEditor"
}
]
},
{
"before":["<C-w>", "s"],
"after": [],
"commands": [
{
"command": "workbench.action.splitEditorDown"
}
]
},
{
"before":["leader", "b", "d"],
"after": [],
"commands": [
{
"command": "workbench.action.closeActiveEditor"
}
]
},
{
"before":["]", "q"],
"after": [],
"commands": [
{
"command": "editor.action.marker.next"
}
]
},
{
"before":["[", "q"],
"after": [],
"commands": [
{
"command": "editor.action.marker.previous"
}
]
},
{
"before":["]", "c"],
"after": [],
"commands": [
{
"command": "workbench.action.editor.nextChange"
},
{
"command": "workbench.action.compareEditor.nextChange"
}
]
},
{
"before":["[", "c"],
"after": [],
"commands": [
{
"command": "workbench.action.editor.previousChange"
},
{
"command": "workbench.action.compareEditor.previousChange"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment