Create an empty git repo or reinitialize an existing one
git initCreate an empty git repo or reinitialize an existing one
git init| [user] | |
| name = First Last | |
| email = [email protected] | |
| [credential] | |
| helper = wincred | |
| [core] | |
| editor = code --wait | |
| excludesfile = C:/Users/jedma/.gitignore |
| export PATH="$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin" | |
| export PATH="/usr/local/opt/python/bin:$PATH" | |
| export GPG_TTY=$(tty) | |
| # export START="$HOME/a" | |
| # if [[ $PWD == $HOME ]]; then | |
| # cd $START | |
| # fi | |
| # alias ls='ls -F --color --show-control-chars' |
| { | |
| "color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
| "ensure_newline_at_eof_on_save": true, | |
| "font_size": 14, | |
| "highlight_line": true, | |
| "ignored_packages": ["Vintage"], | |
| "rulers": [80, 120], | |
| "shift_tab_unindent": true, | |
| "translate_tabs_to_spaces": true, | |
| "trim_trailing_white_space_on_save": true, |
| @import "compass/css3/font-face"; | |
| @mixin app-font($name, $weight: normal, $style: normal) | |
| { | |
| $font-files: | |
| inline-font-files( | |
| '#{$name}.woff', woff | |
| ), | |
| font-files( |
| // Color names are not intended for direct use in your Sass files. | |
| // Create a color map for each hue (e.g., neutrals, reds, yellows, greens and browns). | |
| // http://www.color-blindness.com/color-name-hue/ | |
| $neutrals: ( | |
| gray: #7f7f7f | |
| ); | |
| $blues: ( | |
| mariner: #4862a3, |
| // ---- | |
| // Sass (v3.3.4) | |
| // Compass (v1.0.0.alpha.18) | |
| // ---- | |
| @mixin app-font($name, $weight: normal, $style: normal) { | |
| $font-files: | |
| inline-font-files( | |
| '#{$name}.woff', woff | |
| ), |
| /*eslint-disable no-console */ | |
| var LOG_METHODS = ['debug', 'error', 'info', 'warn']; | |
| function log() { | |
| if (!console || !console.log) { | |
| return; | |
| } | |
| console.log.apply(console, arguments); | |
| } |
| $bem-blocks: ( | |
| "foo", | |
| "bar", | |
| "baz" | |
| ); | |
| $sprite-files: (); | |
| /* | |
| * Generate BEM-style silent classes for BEM sprites |
| const checkers = { | |
| isSize(value) { | |
| throw new Error('Not implemented'); | |
| }, | |
| isStyle(value) { | |
| throw new Error('Not implemented'); | |
| }, | |
| isVariant(value) { | |
| throw new Error('Not implemented'); | |
| }, |