If you're a newcomer and needs to get started fast, with as little knowledge as possible, follow these steps.
- Setup .editorconfig
- Setup .gitignore_global
/.idea /.vscode /.vagrant /auth.json
const _$ = el => document.querySelector(el); | |
const _$$ = el => document.querySelectorAll(el); | |
const _on = (eventName, el, eventHandler) => el.addEventListener(eventName, eventHandler, false); |
If you're a newcomer and needs to get started fast, with as little knowledge as possible, follow these steps.
/.idea
/.vscode
/.vagrant
/auth.json
if [ "$color_prompt" = yes ]; then | |
# orig: PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' | |
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;33m\]\h\[\033[00m\]::\[\033[91m\]\u\[\033[00m\]:\[\033[01;34m\]\w\[\033[35m\]$(__git_ps1)\[\033[00m\]\$ ' | |
else | |
# orig: PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' | |
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$(__git_ps1)\$ ' | |
fi |
{ | |
"workbench.iconTheme": "vscode-icons", | |
"terminal.integrated.shell.windows": "E:\\Program Files\\Git\\bin\\bash.exe", | |
"terminal.integrated.shellArgs.windows": [ | |
"--login", "-i" | |
], | |
"php.validate.executablePath": "E:\\xampp\\php\\php.exe", | |
"editor.fontSize": 12, | |
"git.autofetch": true, | |
"vim.easymotion": true, |
- switch DNS manager from namecheap to cloudflare | |
- unlock domain, this may take time, so try contacting support if there's option to make the process faster | |
- turn off privacy | |
- check whois if contact info is appropriate |
Noting all the subtle things I had to tinker with.
- use git bash as terminal | |
- | |
``` | |
{ | |
"workbench.iconTheme": "vscode-icons", | |
"terminal.integrated.shell.windows": "E:\\Program Files\\Git\\bin\\bash.exe" | |
} | |
``` | |
- set php path to use xampp, add php to env |