View package.json
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
{ | |
"name": "project-name", | |
"version": "1.0.0", | |
"description": "", | |
"author": "", | |
"license": "GPL-2.0-or-later", | |
"main": "index.js", | |
"scripts": { | |
"env": "WP_ENV_HOME=\"wp-env\" wp-env", | |
"env:logs": "npm run env logs", |
View thejoker.zsh-theme
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
# name in folder (github) | |
# ± if in github repo, or ≥ if otherwise Time in 24-hour format is on right. | |
function collapse_pwd { | |
echo $(pwd | sed -e "s,^$HOME,~,") | |
} | |
function prompt_char { | |
echo -n "%{$fg_bold[red]%}➜%{$reset_color%} " | |
#echo -n "%{$fg_bold[white]%}" | |
#git branch >/dev/null 2>/dev/null && echo "±%{$reset_color%}" && return | |
#echo "$%{$reset_color%}" |
View .prettierrc
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
{ | |
"useTabs": true, | |
"tabWidth": 4, | |
"singleQuote": true, | |
"printWidth": 100 | |
} |
View .hyper.js
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
// 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: { | |
updateChannel: 'canary', | |
// default font size in pixels for all tabs | |
fontSize: 14, | |
windowSize: [1080, 720], |
View .prettierignore
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
*.json | |
README.md |
View vscode.js
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
{ | |
"editor.fontSize": 14, | |
"editor.fontLigatures": true, | |
"editor.minimap.enabled": false, | |
"editor.detectIndentation": false, | |
"editor.insertSpaces": false, | |
"editor.bracketPairColorization.enabled": true, | |
// Auto-save configs | |
"editor.formatOnSave": true, | |
"[markdown]": { |
View .eslintrc
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
{ | |
"root": true, | |
"extends": [ "react-app", "plugin:jsx-a11y/recommended" ], | |
"plugins": [ "jsx-a11y" ], | |
"parser": "babel-eslint", | |
"parserOptions": { | |
"ecmaVersion": 8, | |
"ecmaFeatures": { | |
"experimentalObjectRestSpread": true, | |
"impliedStrict": true, |
View style-blog-cobaltish.css
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
.widget_recent_comments a, .widget_recent_entries a, body, button, input, select, textarea { | |
color: #F9FFEE; | |
} | |
.entry-author .author-title, .entry-title, .entry-title a, .entry-title a:visited, .site-posted-on strong, .site-title, .site-title a, .site-title a:visited, .entry-title a:hover, .site-title a:hover, h1, h2, h3, h4, h5, h6, .page-header:not(.page-header-light) h1, .comment .comment-meta .comment-author .fn { | |
color: #EFBB35; | |
} | |
.site-title a { | |
color: #EFBB35 !important; | |
} | |
.site-description, .social-navigation li a, .site-header .menu-toggle { |
View .gitattributes-line-endings
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
## Deal with differences in line endings: | |
## See https://help.github.com/articles/dealing-with-line-endings/ | |
# Set the default behavior, in case people don't have core.autocrlf set. | |
* text=auto | |
# Explicitly declare text files you want to always be normalized and converted | |
# to native line endings on checkout. | |
*.c text | |
*.h text |
View docker-compose.wordpress.coredev.yml
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
version: '2' | |
services: | |
wordpress: | |
image: wordpress | |
ports: | |
- 8888:80 | |
environment: | |
WORDPRESS_DB_PASSWORD: password |
NewerOlder