Yongmin Hong
7dcaa2e6da
Summary: - remove vscode submodule - git mv git(config|ignore).sample to default.git(config|ignore) - more rules for editorconfig, alphabetize - enforce ^ - mv REAMDE.wiki to REAMDE.md but forgot git mv (markup difference would've made them different enough anyway) - gitconfig to new identity - change gpg.conf default too Signed-off-by: Yongmin Hong <revi@omglol.email> Test Plan: Read the Diff ™️. Reviewers: #acl_sudoers, #blessed_reviewers, revi Reviewed By: #acl_sudoers, #blessed_reviewers, revi Differential Revision: https://issuetracker.revi.xyz/D18
19 lines
574 B
Bash
19 lines
574 B
Bash
# Arcanist
|
|
export PATH="$PATH:$HOME/phacility/arcanist/bin/"
|
|
# Nano the best editor ever since the inception of the computers
|
|
export EDITOR="/usr/bin/nano"
|
|
# Prevent macOS terminal emitting Korean
|
|
export LANG="en_US.UTF-8"
|
|
# Fuck VIM
|
|
alias vim='nano'
|
|
alias gpgrefresh='gpg --refresh-keys'
|
|
alias la='ls -a'
|
|
# PHP stuff
|
|
alias pear='$HOME/.pear/bin/pear'
|
|
alias phpcs='$HOME/.composer/vendor/bin/phpcs'
|
|
# Python3 as py
|
|
alias py='python3'
|
|
# Python2 as py2
|
|
alias py2='python'
|
|
# tailscale (just for my old laptop - locally uncheck this.)
|
|
# alias tailscale='$HOME/go/bin/tailscale'
|