This file contains hidden or 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
# 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 |
This file contains hidden or 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
[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" |
This file contains hidden or 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
module.exports = { | |
config: { | |
verminal: { | |
fontSize: 18, | |
fontFamily: '"MesloLGS NF"', | |
}, | |
// default font size in pixels for all tabs | |
fontSize: 18, | |
// font family with optional fallbacks |
This file contains hidden or 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
# 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 |
This file contains hidden or 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
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') |