blob: 93c895f78ad03c136a26ae7dd9d84f934e6a9dde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# 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
# Colour man pages
export GROFF_NO_SGR=1
export LESS_TERMCAP_mb=$'\e[01;33m' # begin blinking
export LESS_TERMCAP_md=$'\e[01;33m' # begin bold
export LESS_TERMCAP_me=$'\e[0m' # end all mode like so, us, mb, md, mr
export LESS_TERMCAP_se=$'\e[0m' # end standout-mode
export LESS_TERMCAP_so=$'\e[01;32m' # start standout mode
export LESS_TERMCAP_ue=$'\e[0m' # end underline
export LESS_TERMCAP_us=$'\e[1;37m' # start underlining
#
# 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
"
|