Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion shell.d/alias
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
alias vim="vim -X"

# rsync + ssh flags per https://gist.github.com/KartikTalwar/4393116
alias gigabit-rsync="rsync -Pvar --numeric-ids --progress -e 'ssh -T -c aes128-gcm@openssh.com -o Compression=no -x'"
alias gigabit-rsync='rsync ${RSYNC_FLAGS}'

# Enable per platform aliases
if [ -e "${CONFIGS}/alias.$(uname -s)" ];
Expand Down
3 changes: 3 additions & 0 deletions shell.d/env
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ export MYHOSTNAME=$(hostname -s)
export EDITOR="vim"
export PAGER="less"

# rsync flags for gigabit transfers per https://gist.github.com/KartikTalwar/4393116
export RSYNC_FLAGS="-Pvar --numeric-ids --progress -e 'ssh -T -c aes128-gcm@openssh.com -o Compression=no -x'"

export LANG=en_IE.UTF-8
export LC_CTYPE=en_IE.UTF-8
export LC_MESSAGES=C
Expand Down