Created
April 20, 2018 20:43
-
-
Save bryanhunter/42627b16aeb499cafbf41e60ada06d22 to your computer and use it in GitHub Desktop.
VS Code User 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
// 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" | |
} | |
] |
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
// 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