Skip to content

Instantly share code, notes, and snippets.

View imran-ib's full-sized avatar
🏠
Working from home

Imran Irshad imran-ib

🏠
Working from home
View GitHub Profile
// 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",
{
"workbench.colorTheme": "Cobalt2",
"better-comments.multilineComments": true,
"editor.formatOnSave": true,
// Enable per-language
"[javascript]": {
"editor.formatOnSave": true
},
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"better-comments.highlightPlainText": false,
@imran-ib
imran-ib / rootReducer.js
Created October 29, 2018 14:30
redux store
import { combineReducers } from "redux";
import testReducer from "./testReducer";
import { reducer as formReducer } from "redux-form";
import { reducer as toastrReducer } from "react-redux-toastr";
const rootReducer = combineReducers({
test: testReducer,
form: formReducer,
toastr: toastrReducer
});
@imran-ib
imran-ib / add fonts to css
Created August 29, 2018 16:58
just add this line of code to your body style
font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif