Last active
December 3, 2019 09:22
-
-
Save milesxu/dc69bbf16e54fc913b6239ecf349b7e9 to your computer and use it in GitHub Desktop.
VSCode config
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
Host * | |
IdentitiesOnly yes | |
AddKeysToAgent yes | |
PreferredAuthentications publickey | |
Host dgx49 | |
HostName 10.19.203.49 | |
User mingx | |
IdentityFile ~/.ssh/ssh_rsa_4096 | |
Host psg | |
HostName psglogin.nvidia.com | |
User mingx | |
IdentityFile ~/.ssh/ssh_rsa_4096 | |
Host dgx-tunnel | |
HostName 10.19.203.49 | |
User mingx | |
IdentityFile ~/.ssh/ssh_rsa_4096 | |
LocalForward 8080 127.0.0.1:8080 | |
LocalForward 4200 127.0.0.1:4200 | |
Host myds | |
HostName byavs.myds.me | |
User nvidia | |
Port 22255 | |
IdentityFile ~/.ssh/ssh_rsa_4096 | |
Host ws29 | |
HostName 10.19.206.29 | |
User milesxu | |
IdentityFile ~/.ssh/dgx_49_ssh | |
Host ws-tunnel | |
HostName 10.19.206.29 | |
User milesxu | |
IdentityFile ~/.ssh/dgx_49_ssh | |
LocalForward 8080 127.0.0.1:8080 | |
LocalForward 4200 127.0.0.1:4200 |
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": "alt+backspace", | |
"command": "workbench.action.toggleSidebarVisibility" | |
}, | |
{ | |
"key": "ctrl+b", | |
"command": "-workbench.action.toggleSidebarVisibility" | |
}, | |
{ | |
"key": "ctrl+shift+g space", | |
"command": "workbench.view.scm" | |
}, | |
{ | |
"key": "ctrl+shift+g", | |
"command": "-workbench.view.scm" | |
}, | |
{ | |
"key": "ctrl+pageup", | |
"command": "workbench.action.terminal.focusPrevious" | |
}, | |
{ | |
"key": "ctrl+pagedown", | |
"command": "workbench.action.terminal.focusNext" | |
} | |
] |
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": "'IBM Plex Mono', Monoid, 'Source Code Pro', 'Fira Code Retina', 'Liberation Mono', FreeMono, 'Ubuntu Mono', 'Envy Code R', 'Fantasque Sans Mono', 'Nimbus Mono PS', Iosevka, 'Courier Prime', 'Liberation Mono', 'Anonymous Pro', 'Noto Mono', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'", | |
"editor.rulers": [ | |
80 | |
], | |
"editor.minimap.enabled": false, | |
"editor.formatOnPaste": true, | |
"editor.formatOnSave": true, | |
"gitlens.advanced.messages": { | |
"suppressShowKeyBindingsNotice": true | |
}, | |
"C_Cpp.formatting": "Default", | |
"window.titleBarStyle": "custom", | |
"breadcrumbs.enabled": true, | |
"vim.easymotion": true, | |
"vim.sneak": true, | |
"vim.incsearch": true, | |
"vim.useSystemClipboard": true, | |
"vim.useCtrlKeys": true, | |
"vim.hlsearch": true, | |
"vim.insertModeKeyBindings": [{ | |
"before": ["j", "k"], | |
"after": ["<Esc>"] | |
}], | |
"vim.normalModeKeyBindingsNonRecursive": [{ | |
"before": ["<leader>", "d"], | |
"after": ["d", "d"] | |
}, | |
{ | |
"before": ["<C-n>"], | |
"commands": [":nohl"] | |
}, | |
{ | |
"before": ["leader", "w"], | |
"commands": [ | |
"workbench.action.files.save", | |
] | |
}, | |
{ | |
"before": ["j"], | |
"after": ["g", "j"] | |
} | |
], | |
"vim.leader": ",", | |
"vim.handleKeys": { | |
"<C-a>": false, | |
"<C-k>": false, | |
"<C-t>": false | |
}, | |
"files.autoSave": "onFocusChange", | |
"git.enableSmartCommit": true, | |
"git.autofetch": true, | |
"C_Cpp.dimInactiveRegions": false, | |
"editor.fontLigatures": true, | |
"cmake.configureOnOpen": true, | |
"python.linting.pylintCategorySeverity.convention": "Warning", | |
"window.zoomLevel": 0, | |
"terminal.integrated.fontFamily": "'Anonymous Pro', 'Noto Mono'", | |
"razor.disabled": true, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"workbench.colorTheme": "Dracula", | |
"python.jediMemoryLimit": -1, | |
"python.jediEnabled": false, | |
"vsicons.projectDetection.autoReload": true, | |
"C_Cpp.updateChannel": "Insiders", | |
"explorer.confirmDragAndDrop": false, | |
"html.format.wrapAttributes": "aligned-multiple", | |
"html.format.wrapLineLength": 80, | |
"prettier.singleQuote": true, | |
"prettier.tslintIntegration": true, | |
"editor.renderWhitespace": "selection", | |
"[makefile]": { | |
"editor.insertSpaces": false, | |
"editor.detectIndentation": false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment