Skip to content

Instantly share code, notes, and snippets.

View chitchu's full-sized avatar
🤔
Hmmmmmm

Vicente Jr Yuchitcho chitchu

🤔
Hmmmmmm
  • Sydney, Australia
View GitHub Profile
@chitchu
chitchu / .zshrc
Last active December 29, 2019 12:55
# Alias
alias ll='ls -lhGF'
alias lla='ls -alhGF'
alias la='ls -hAF'
alias l='ls -hCF'
HOME_DIR="chitchu"
#fzf
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
[alias]
patch = add -p
amend = commit --amend --no-edit --date=now
ls = log --pretty=format:\"%C(yellow)%h\\\\ %ad%Cred%d\\\\ %Creset%s%Cblue\\\\ [%cn]\" --decorate --date=relative --max-count 20
ld = log --pretty=format:\"%C(yellow)%h\\\\ %ad%Cred%d\\\\ %Creset%s%Cblue\\\\ [%cn]\" --decorate --date=relative
f = !git ls-files | grep -i
st = status -s
ignore = "!gi() { curl -L -s https://www.gitignore.io/api/$@ ;}; gi"
rebr = !git rebase -i `git merge-base master HEAD`
rebr-from = "!rb() { git rebase -i `git merge-base "$1^" HEAD`; }; rb"
@chitchu
chitchu / hyper.js
Last active December 29, 2019 12:50
module.exports = {
config: {
verminal: {
fontSize: 18,
fontFamily: '"MesloLGS NF"',
},
// default font size in pixels for all tabs
fontSize: 18,
// font family with optional fallbacks
@chitchu
chitchu / .bashrc
Last active January 15, 2017 23:14
# aliases
alias ll='ls -lhGF'
alias lla='ls -alhGF'
alias la='ls -hAF'
alias l='ls -hCF'
#git-completion.bash get it from https://github.com/git/git/blob/master/contrib/completion/git-completion.bash
if [ -f ~/.git-completion.bash ]; then
. ~/.git-completion.bash
fi
@chitchu
chitchu / html5boilerplate.jade
Last active August 29, 2015 14:26 — forked from xtian/html5boilerplate.jade
HTML5 Boilerplate in jade
doctype html
html(class='no-js')
head
meta(charset='utf-8')
meta(http-equiv='X-UA-Compatible', content='IE=edge')
title
meta(name='description', content='')
meta(name='viewport', content='width=device-width, initial-scale=1')