Skip to content

Instantly share code, notes, and snippets.

@hoehooiyan
hoehooiyan / settings.json
Created June 9, 2020 11:23
Visual Studio Code settings
{
"autoimport.autoComplete": true,
"autoimport.filesToScan": "**/*.{ts,tsx,js, jsx}",
"better-comments.multilineComments": true,
"breadcrumbs.enabled": true,
"css.validate": true,
"editor.copyWithSyntaxHighlighting": true,
"editor.cursorBlinking": "smooth",
"editor.cursorStyle": "line-thin",
"editor.folding": false,
@hoehooiyan
hoehooiyan / mixins.scss
Created April 26, 2020 12:25
sass media queries mixins
@mixin sm {
@media (min-width: $screen-sm) {
@content;
}
}
@mixin md {
@media (min-width: $screen-md) {
@content;
}
@hoehooiyan
hoehooiyan / .zshrc
Last active June 9, 2020 11:29
zsh shell settings
# If you come from bash you might have to change your $PATH.
PATH=/bin:/usr/bin:/usr/local/bin:${PATH}
export PATH
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
@hoehooiyan
hoehooiyan / .hyper.js
Last active June 9, 2020 11:16
Hyper Terminal settings
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',