aboutsummaryrefslogtreecommitdiff
path: root/dot-profile
diff options
context:
space:
mode:
authorBlake Romero <blake@blkrom.com>2024-11-07 15:01:03 +0000
committerBlake Romero <blake@blkrom.com>2024-11-07 15:01:03 +0000
commit21ff6f8e1bf8ec829d05d020262f7432c468d7d5 (patch)
treee654ea5ebc581059f1e98cff753833550f7e5dcd /dot-profile
parente70527e0cbbc08c5488e1cfe341381f433700d6c (diff)
Move shell environment variables into dot-profile
Diffstat (limited to 'dot-profile')
-rw-r--r--dot-profile36
1 files changed, 36 insertions, 0 deletions
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
+"