Skip to content

Instantly share code, notes, and snippets.

@bryanhunter
Created April 20, 2018 20:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bryanhunter/42627b16aeb499cafbf41e60ada06d22 to your computer and use it in GitHub Desktop.
Save bryanhunter/42627b16aeb499cafbf41e60ada06d22 to your computer and use it in GitHub Desktop.
VS Code User Settings
// Mac ~/Library/Application Support/Code/User/keybindings.json
[
{
"key": "alt+enter",
"command": "workbench.action.terminal.runSelectedText"
},
{
"key": "cmd+h",
"command": "editor.action.startFindReplaceAction"
},
{
"key": "alt+cmd+f",
"command": "-editor.action.startFindReplaceAction"
}
]
// Mac ~/Library/Application Support/Code/User/settings.json
{
"window.nativeTabs": true,
"window.zoomLevel": 1,
"workbench.colorTheme": "Flatland_Black",
"terminal.integrated.scrollback": 5000,
"editor.tabSize": 2,
"workbench.iconTheme": "vscode-great-icons",
"editor.rulers": [
80,
100
],
"workbench.colorCustomizations":
{
"activityBar.background": "#080808" ,
"sideBar.background": "#101010",
"sideBarSectionHeader.background": "#020202",
"statusBar.background": "#101030",
"panel.background": "#020202",
"editor.lineHighlightBackground": "#081008",
"editorRuler.foreground": "#101010"
},
"editor.acceptSuggestionOnEnter": "smart",
"rust.mode": "rls",
"rust.rustup": {
"toolchain": "stable-x86_64-apple-darwin",
"nightlyToolchain": "nightly-x86_64-apple-darwin"
},
"rust.rls": {
"useRustfmt": true
},
"editor.fontFamily": "Monaco, Menlo, 'Courier New', monospace",
"extensions.ignoreRecommendations": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"editor.minimap.enabled": false,
"emeraldwalk.runonsave": {
"commands": [
{
"match": ".ex",
"isAsync": true,
"cmd": "mix format ${file}"
}]
},
"todo-tree.flat": true,
"gitlens.keymap": "alternate",
"git.autofetch": true,
"git.confirmSync": false,
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment