summary refs log tree commit diff
path: root/home
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-01-11 00:17:51 -0500
committerJune McEnroe <june@causal.agency>2019-01-11 00:17:51 -0500
commit709050a80a27a16eabc1eec84c1e1f31b8521583 (patch)
tree2b508a55b6e6b8c0d44f226185dc35a2991aeedd /home
parentSet default ENV to ~/.config/cash/cashrc (diff)
downloadsrc-709050a80a27a16eabc1eec84c1e1f31b8521583.tar.gz
src-709050a80a27a16eabc1eec84c1e1f31b8521583.zip
Add cashrc
Diffstat (limited to 'home')
-rw-r--r--home/.config/cash/cashrc36
1 files changed, 36 insertions, 0 deletions
diff --git a/home/.config/cash/cashrc b/home/.config/cash/cashrc
new file mode 100644
index 00000000..cefa0321
--- /dev/null
+++ b/home/.config/cash/cashrc
@@ -0,0 +1,36 @@
+set -o noclobber -o nounset -o vi
+
+systemPath=$PATH
+PATH=/sbin:/bin:/opt/pkg/sbin:/opt/pkg/bin:/usr/local/sbin:/usr/local/bin:/usr/pkg/sbin:/usr/pkg/bin:/usr/sbin:/usr/bin:~/.local/sbin:~/.local/bin:/usr/games
+CDPATH=:$HOME
+
+export PAGER=less
+export MANSECT=2:3:1:8:6:5:7:4:9
+export EDITOR=vim
+if type nvim > /dev/null; then
+	EDITOR=nvim
+	alias vim=nvim
+	export MANPAGER="nvim -c 'set ft=man' -"
+fi
+export GIT_EDITOR=$EDITOR
+export CLICOLOR=1
+export GPG_TTY=$(tty)
+export NETHACKOPTIONS='pickup_types:$!?+/=, color, DECgraphics'
+
+alias ls='ls -p'
+alias ll='ls -lh'
+if [ "$(uname)" = 'Linux' ]; then
+	alias ls='ls --color=auto' grep='grep --color' rm='rm -I'
+fi
+alias bc='bc -l'
+alias gs='git status --short --branch || ls' gd='git diff'
+alias gsh='git show' gl='git log --graph --pretty=log'
+alias gco='git checkout' gb='git branch' gm='git merge' gst='git stash'
+alias ga='git add' gmv='git mv' grm='git rm'
+alias gc='git commit' gca='gc --amend' gt='git tag'
+alias gp='git push' gu='git pull' gf='git fetch'
+alias gr='git rebase' gra='gr --abort' grc='gr --continue' grs='gr --skip'
+alias rand='openssl rand -base64 33'
+alias private='eval "$(gpg -d ~/.private)"'
+
+RPS1='\W'
-0400'>2017-07-31Show other clients' cursorsJune McEnroe Also unfuck removing on send failure. 2017-07-31Perform enter as two moves rather than a loopJune McEnroe 2017-07-31Track tile access countsJune McEnroe 2017-07-31Adjust move speed in clientJune McEnroe 2017-07-31Handle large movesJune McEnroe 2017-07-30Optimize builds for chrootJune McEnroe 2017-07-30Persist bright across color changesJune McEnroe 2017-07-30Add index.htmlJune McEnroe 2017-07-30Add snapshot.shJune McEnroe 2017-07-30Fix termcap patch for background colorsJune McEnroe 2017-07-30Update helpJune McEnroe 2017-07-30Fix help to track colorJune McEnroe 2017-07-30Support background colorsJune McEnroe 2017-07-30Track color only client-sideJune McEnroe 2017-07-30Add ostensible support for background colorsJune McEnroe 2017-07-30Add tile create and access timestampsJune McEnroe 2017-07-30Assert stable struct Tile field offsetsJune McEnroe 2017-07-30Add chroot.shJune McEnroe 2017-07-30Add ` commandJune McEnroe 2017-07-30Add sshd_configJune McEnroe 2017-07-30Add termcap patchJune McEnroe