1
0

make nicer

This commit is contained in:
dtb 2023-08-31 15:31:41 -04:00
parent 8905d938fe
commit 163a8c0347
3 changed files with 18 additions and 16 deletions

View File

@ -30,11 +30,6 @@ pyenv() {
alias sensors="watch sensors"
alias sudo="$SUDO"
alias try="PREFIX=/home/trinity/src/trilsd/ /home/trinity/src/trilsd/dist/try"
# Wacom Intuos 2
#alias taboff="xsetwacom set 'Wacom Intuos2 6x8 Pen stylus' MapToOutput LVDS-1"
#alias tabon="xsetwacom set 'Wacom Intuos2 6x8 Pen stylus' MapToOutput VGA-1"
alias units="units --history /dev/null"
alias v="$VISUAL"
alias weather="curl wttr.in/lewiston+maine?m"

View File

@ -1,10 +1,14 @@
if [ "$0" = "bash" ] || [ "$0" = "-bash" ]; then complete -c man which; fi
set -o vi
test "$0" = bash || test "$0" = -bash \
&& complete -c man which \
|| true
PS1="; "
PS2="; "
PS3="; "
set -o vi
. $HOME/.aliases
. $HOME/.cargo/env
test -e "$HOME/.aliases" \
&& . $HOME/.aliases
test -e "$HOME/.cargo/env" \
&& . $HOME/.cargo/env

View File

@ -1,7 +1,8 @@
BROWSER=firefox; export BROWSER
EDITOR=/usr/lib/plan9/bin/ed; export EDITOR
PAGER="less"; export PAGER
PLAN9=/usr/local/plan9; export PLAN9
test -f /usr/lib/plan9 && PLAN9=/usr/lib/plan9
test -f /usr/local/plan9 && PLAN9=/usr/local/plan9
export PLAN9
EDITOR="$PLAN9/bin/sam -d"; export EDITOR
PATH="\
/bin:\
/sbin:\
@ -15,9 +16,11 @@ PATH="\
/usr/pkg/qt5/bin:\
/usr/X11R7/bin:\
$HOME/bin/:\
$PLAN9/bin"; export PATH
TERMINAL="uxterm"; export TERMINAL
UNITS_SYSTEM="si"; export UNITS_SYSTEM
$PLAN9/bin:\
$PATH"; export PATH
PAGER="less"; export PAGER
TERMINAL=uxterm; export TERMINAL
UNITS_SYSTEM=si; export UNITS_SYSTEM
VISUAL=vi; export VISUAL
WALLPAPER="$HOME/Pictures/Wallpapers/ghibli_wars.jpg"; export WALLPAPER