Skip to content

Instantly share code, notes, and snippets.

View genesy's full-sized avatar
🎯
Focusing

Gene Sy genesy

🎯
Focusing
View GitHub Profile
@genesy
genesy / breakpoint.scss
Last active August 29, 2015 13:57
@mixin breakpoint
@mixin breakpoint($size-or-width) {
$merged-breakpoints: null;
$max-width: null;
$default-breakpoints:(
XL: 2000px,
L: 1250px,
M: 950px,
S: 650px,
XS: 450px
);
@genesy
genesy / Preferences.sublime-settings
Last active August 29, 2015 14:04
My sublime preferences
{
"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,
// 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" },