etc/commonshrc

19 lines
399 B
Plaintext
Raw Permalink Normal View History

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