summary refs log tree commit diff
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
commit6e9e0799369c7a8a940ac223a1f1093bc353a353 (patch)
tree9c60e4fa5fed89e258661ef704eb60197af1c2ca
parentRemove default ENV from manual (diff)
downloadsrc-6e9e0799369c7a8a940ac223a1f1093bc353a353.tar.gz
src-6e9e0799369c7a8a940ac223a1f1093bc353a353.zip
Use .profile, .shrc, .history
-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
colspan='3' class='logmsg'> Several options must be specified prior to scan-path. This is consistant source of user confusion. Document these facts. Suggested-by: Lukas Fleischer <cgit@cryptocrack.de> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2013-04-10ui-snapshot.c: Prepend "V" when guessing ref namesLukas Fleischer In cgit_print_snapshot_links() we strip leading "v" and "V", while we currently only prepend a lower case "v" when parsing a snapshot file name. This results in broken snapshot links for tags that start with an upper case "V". Avoid this by prepending a "V" as a fallback. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10t0107: Skip ZIP tests if unzip(1) isn't availableLukas Fleischer Note that we cannot use skip_all here since some tests have already been executed when ZIP tests are reached. Use test prerequisites to skip everything using unzip(1) if the binary is not available instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10tests/: Do not use `sed -i`Lukas Fleischer "-i" isn't part of the POSIX standard and doesn't work on several platforms such as OpenBSD. Use a temporary file instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10Add branch-sort and repo.branch-sort options.Jason A. Donenfeld When set to "name", branches are sorted by name, which is the current default. When set to "age", branches are sorted by the age of the repository. This feature was requested by Konstantin Ryabitsev for use on kernel.org. Proposed-by: Konstantin Ryabitsev <mricon@kernel.org> 2013-04-10t0109: chain operations with &&John Keeping Without '&&' between operations, we will not detect if strace or cgit exit with an error status, which would cause a false positive test status in this case. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-10cgit.c: Do not restore unset environment variablesLukas Fleischer getenv() returns a NULL pointer if the specified variable name cannot be found in the environment. However, some setenv() implementations crash if a NULL pointer is passed as second argument. Only restore variables that are not NULL. See commit d96d2c98ebc4c2d3765f5b35c4142e0e828a421b for a related patch. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-09t0107: Use `tar -z` for gzip'ed archivesLukas Fleischer