View my mac default keybinds
This file contains 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
// Override key bindings by placing them into your key bindings file. | |
[ | |
{ "key": "escape escape", "command": "workbench.action.exitZenMode", | |
"when": "inZenMode" }, | |
{ "key": "shift+escape", "command": "closeReferenceSearch", | |
"when": "inReferenceSearchEditor && !config.editor.stablePeek" }, | |
{ "key": "escape", "command": "closeReferenceSearch", | |
"when": "inReferenceSearchEditor && !config.editor.stablePeek" }, | |
{ "key": "shift+escape", "command": "cancelSelection", | |
"when": "editorHasSelection && textInputFocus" }, |
View Preferences.sublime-settings
This file contains 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
Show hidden characters
{ | |
"bold_folder_labels": true, | |
"caret_extra_bottom": 1, | |
"caret_extra_top": 1, | |
"caret_extra_width": 1, | |
// Valid values are "smooth", "phase", "blink" and "solid". | |
// "caret_style": "smooth", | |
"trim_trailing_white_space_on_save": true, |
View breakpoint.scss
This file contains 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
@mixin breakpoint($size-or-width) { | |
$merged-breakpoints: null; | |
$max-width: null; | |
$default-breakpoints:( | |
XL: 2000px, | |
L: 1250px, | |
M: 950px, | |
S: 650px, | |
XS: 450px | |
); |