2011-04-30 18:21:21 +00:00
|
|
|
# Copyright (C) 2011 Gabriel Ebner
|
|
|
|
# vim:fdm=marker ft=sh:
|
|
|
|
|
|
|
|
export USER=`whoami`
|
|
|
|
|
2023-03-31 03:39:13 +00:00
|
|
|
test -d /run/current-system || . $HOME/etc/nonnixshellrc
|
2014-07-22 18:33:48 +00:00
|
|
|
|
2011-04-30 18:21:21 +00:00
|
|
|
# Customisation of Programs {{{1
|
|
|
|
alias ls='ls --color=auto'
|
2013-05-09 09:17:19 +00:00
|
|
|
export EMAIL='gebner@gebner.org'
|
2011-04-30 18:21:21 +00:00
|
|
|
test -x /usr/bin/lesspipe && eval `lesspipe`
|
|
|
|
|
2024-08-10 16:48:38 +00:00
|
|
|
if type -t nvim >/dev/null; then
|
|
|
|
export EDITOR="$(command -v nvim)"
|
|
|
|
alias vi="$EDITOR"
|
|
|
|
fi
|
2014-08-18 16:45:07 +00:00
|
|
|
|
2016-01-06 12:06:55 +00:00
|
|
|
export BROWSER=xdg-open
|