Last active
May 16, 2018 18:19
-
-
Save granmoe/d8985d170d0658b0a718f6312ef3e5e7 to your computer and use it in GitHub Desktop.
temp-vscode-settings
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
[alias] | |
s = status | |
d = diff | |
c = checkout | |
co = commit | |
ps = push | |
l = log | |
p = pull | |
b = branch | |
[user] | |
name = Matt Granmoe | |
email = asdf | |
[core] | |
autocrlf = false | |
[filter "lfs"] | |
smudge = git-lfs smudge -- %f | |
process = git-lfs filter-process | |
required = true | |
clean = git-lfs clean -- %f | |
[http] | |
sslVerify = false |
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
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "ctrl+shift+up", | |
"command": "editor.action.insertCursorAbove", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+alt+up", | |
"command": "-editor.action.insertCursorAbove", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+shift+down", | |
"command": "editor.action.insertCursorBelow", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+alt+down", | |
"command": "-editor.action.insertCursorBelow", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+alt+f", | |
"command": "extension.vim_ctrl+f", | |
"when": "editorTextFocus && vim.active && vim.use<C-f> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+f", | |
"command": "-extension.vim_ctrl+f", | |
"when": "editorTextFocus && vim.active && vim.use<C-f> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+alt+a", | |
"command": "extension.vim_ctrl+a", | |
"when": "editorTextFocus && vim.active && vim.use<C-a> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+a", | |
"command": "-extension.vim_ctrl+a", | |
"when": "editorTextFocus && vim.active && vim.use<C-a> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+alt+c", | |
"command": "extension.vim_ctrl+c", | |
"when": "editorTextFocus && vim.active && vim.overrideCtrlC && vim.use<C-c> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+c", | |
"command": "-extension.vim_ctrl+c", | |
"when": "editorTextFocus && vim.active && vim.overrideCtrlC && vim.use<C-c> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+alt+x", | |
"command": "extension.vim_ctrl+x", | |
"when": "editorTextFocus && vim.active && vim.use<C-x> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+x", | |
"command": "-extension.vim_ctrl+x", | |
"when": "editorTextFocus && vim.active && vim.use<C-x> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+alt+v", | |
"command": "extension.vim_ctrl+v", | |
"when": "editorTextFocus && vim.active && vim.use<C-v> && !inDebugRepl && vim.mode != 'Insert'" | |
}, | |
{ | |
"key": "ctrl+v", | |
"command": "-extension.vim_ctrl+v", | |
"when": "editorTextFocus && vim.active && vim.use<C-v> && !inDebugRepl && vim.mode != 'Insert'" | |
}, | |
{ | |
"key": "ctrl+alt+n", | |
"command": "extension.vim_ctrl+n", | |
"when": "editorTextFocus && vim.active && vim.use<C-n> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+n", | |
"command": "-extension.vim_ctrl+n", | |
"when": "editorTextFocus && vim.active && vim.use<C-n> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+alt+o", | |
"command": "extension.vim_ctrl+o", | |
"when": "editorTextFocus && vim.active && vim.use<C-o> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+o", | |
"command": "-extension.vim_ctrl+o", | |
"when": "editorTextFocus && vim.active && vim.use<C-o> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+shift+l", | |
"command": "workbench.action.terminal.new" | |
}, | |
{ | |
"key": "ctrl+shift+`", | |
"command": "-workbench.action.terminal.new" | |
}, | |
{ | |
"key": "ctrl+l", | |
"command": "workbench.action.terminal.toggleTerminal" | |
}, | |
{ | |
"key": "ctrl+`", | |
"command": "-workbench.action.terminal.toggleTerminal" | |
}, | |
{ | |
"key": "ctrl+n", | |
"command": "workbench.action.terminal.focusNext", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "ctrl+alt+w", | |
"command": "extension.vim_ctrl+w", | |
"when": "editorTextFocus && vim.active && vim.use<C-w> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+w", | |
"command": "-extension.vim_ctrl+w", | |
"when": "editorTextFocus && vim.active && vim.use<C-w> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+shift+w", | |
"command": "workbench.action.closeWindow" | |
}, | |
{ | |
"key": "ctrl+shift+w", | |
"command": "-workbench.action.closeWindow" | |
}, | |
{ | |
"key": "ctrl+shift+w", | |
"command": "workbench.action.closeWindow", | |
"when": "!editorIsOpen" | |
}, | |
{ | |
"key": "ctrl+w", | |
"command": "-workbench.action.closeWindow", | |
"when": "!editorIsOpen" | |
}, | |
{ | |
"key": "ctrl+w", | |
"command": "workbench.action.closeActiveEditor" | |
}, | |
{ | |
"key": "ctrl+f4", | |
"command": "-workbench.action.closeActiveEditor" | |
}, | |
{ | |
"key": "ctrl+alt+]", | |
"command": "extension.vim_ctrl+]", | |
"when": "editorTextFocus && vim.active && vim.use<C-]> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+]", | |
"command": "-extension.vim_ctrl+]", | |
"when": "editorTextFocus && vim.active && vim.use<C-]> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+alt+[", | |
"command": "extension.vim_ctrl+[", | |
"when": "editorTextFocus && vim.active && vim.use<C-[> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+[", | |
"command": "-extension.vim_ctrl+[", | |
"when": "editorTextFocus && vim.active && vim.use<C-[> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+alt+s", | |
"command": "editor.action.selectHighlights", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+shift+l", | |
"command": "-editor.action.selectHighlights", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+alt+r", | |
"command": "sensitive.replace" | |
}, | |
{ | |
"key": "ctrl+alt+d", | |
"command": "editor.action.addSelectionToNextFindMatch", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+d", | |
"command": "-editor.action.addSelectionToNextFindMatch", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+shift+alt+v", | |
"command": "extension.vim_ctrl+v", | |
"when": "editorTextFocus && vim.active && vim.use<C-v> && !inDebugRepl" | |
}, | |
{ | |
"key": "ctrl+v", | |
"command": "-extension.vim_ctrl+v", | |
"when": "editorTextFocus && vim.active && vim.use<C-v> && !inDebugRepl" | |
} | |
] |
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
{ | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"editor.formatOnSave": true, | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "'Fira Code'", | |
"editor.tabSize": 2, | |
"http.proxyStrictSSL": false, | |
"window.zoomLevel": 0, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"workbench.colorTheme": "Nord", | |
"vim.easymotion": true, | |
"vim.leader": ",", | |
"css.validate": false, | |
"eslint.run": "onSave", | |
"extensions.ignoreRecommendations": true, | |
"extensions.showRecommendationsOnlyOnDemand": true, | |
"git.checkoutType": "local", | |
"grunt.autoDetect": "off", | |
"gulp.autoDetect": "off", | |
"jake.autoDetect": "off", | |
"less.validate": false, | |
"npm.autoDetect": "off", | |
"php.suggest.basic": false, | |
"php.validate.enable": false, | |
"scss.validate": false, | |
"telemetry.enableCrashReporter": false, | |
"telemetry.enableTelemetry": false, | |
"update.enableWindowsBackgroundUpdates": false, | |
"window.autoDetectHighContrast": false, | |
"editor.lineNumbers": "relative", | |
"javascript.format.enable": false, | |
"javascript.validate.enable": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment