summary refs log tree commit diff
path: root/home
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-11-21 17:37:01 -0500
committerJune McEnroe <june@causal.agency>2019-11-21 17:37:01 -0500
commit2fe1ccf386c9bc64848854bf4287638344149fa9 (patch)
tree2328503a6156d442f1fc77caeab72770a7f12828 /home
parentRemove default ENV from manual (diff)
downloadsrc-2fe1ccf386c9bc64848854bf4287638344149fa9.tar.gz
src-2fe1ccf386c9bc64848854bf4287638344149fa9.zip
Use .profile, .shrc, .history
Diffstat (limited to 'home')
-rw-r--r--home/.profile20
-rw-r--r--home/.shrc31
2 files changed, 51 insertions, 0 deletions
diff --git a/home/.profile b/home/.profile
new file mode 100644
index 00000000..c2e14ba0
--- /dev/null
+++ b/home/.profile
@@ -0,0 +1,20 @@
+_PATH=$PATH
+for prefix in '' /usr/local /usr/pkg /usr /opt/pkg ~/.local; do
+	PATH=${PATH}${PATH:+:}${prefix}/sbin:${prefix}/bin
+done
+PATH=$PATH:/usr/games
+
+export PAGER=less
+export LESS=FRX
+export EDITOR=nvim
+export MANPAGER="nvim -c 'set ft=man' -"
+export MANSECT=2:3:1:8:6:5:7:4:9
+export CLICOLOR=1
+export GPG_TTY=$(tty)
+export NETHACKOPTIONS='pickup_types:$!?+/=, color, DECgraphics'
+
+type nvim >/dev/null || EDITOR=vim
+[ -e /usr/share/mk/sys.mk ] || export CFLAGS=-O
+cd
+
+export ENV=~/.shrc
diff --git a/home/.shrc b/home/.shrc
new file mode 100644
index 00000000..e815a748
--- /dev/null
+++ b/home/.shrc
@@ -0,0 +1,31 @@
+set -o noclobber -o nounset -o vi
+
+HISTFILE=~/.history
+CDPATH=:~
+
+alias vim=$EDITOR
+alias ls='ls -p'
+alias ll='ls -hl'
+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)"'
+if [ "$(uname)" = 'Linux' ]; then
+	alias ls='ls --color=auto' grep='grep --color'
+fi
+
+PS0=$'\n'
+PS1='\$ '
+RPS1="\? ${SSH_CLIENT:+\h:}\w"
+
+if [ "${TERM%-*}" = 'xterm' ]; then
+	tsl=$'\e]0;'
+	fsl=$'\e\\'
+	PS0="${tsl}${SSH_CLIENT:+\h:}\W${fsl}${PS0}"
+fi