From 21ff6f8e1bf8ec829d05d020262f7432c468d7d5 Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Thu, 7 Nov 2024 15:01:03 +0000 Subject: Move shell environment variables into dot-profile --- dot-profile | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 dot-profile (limited to 'dot-profile') diff --git a/dot-profile b/dot-profile new file mode 100644 index 0000000..46ce84d --- /dev/null +++ b/dot-profile @@ -0,0 +1,36 @@ +# vim: ft=sh + +# +# PROFILE +# + +# Add scripts to PATH +[ -d ~/repos/scripts ] && PATH="$PATH:~/repos/scripts" + +# Variables +export EDITOR=vim +export VISUAL=vim +export LESSHISTFILE=/dev/null + +# +# BEMENU +# + +fg='#eeeeee' +bg='#000000' +mg='#111111' +hl='#31748f' + +export BEMENU_OPTS=" +-is -W .5 -H20 -l10 -B2 -R5 -p> \ +--scroll=always --single-instance \ +--bdr $hl \ +--tb $mg --tf $hl \ +--cb $fg --cf $fg \ +--nb $bg --nf $fg \ +--hb $hl --hf $bg \ +--fb $mg --ff $fg \ +--sb '#00ff00' --sf '#0000ff' \ +--ab $bg --af $fg \ +--scb $bg --scf $hl +" -- cgit