-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.profile
29 lines (22 loc) · 847 Bytes
/
.profile
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
export QT_QPA_PLATFORMTHEME="qt5ct"
export EDITOR='nvim'
export VISUAL='nvim'
export GTK2_RC_FILES="$HOME/.gtkrc-2.0"
# less and man colors
export LESS=-R
export LESS_TERMCAP_mb=$'\E[1;31m' # begin blink
export LESS_TERMCAP_md=$'\E[1;36m' # begin bold
export LESS_TERMCAP_me=$'\E[0m' # reset bold/blink
export LESS_TERMCAP_so=$'\E[01;44;33m' # begin reverse video
export LESS_TERMCAP_se=$'\E[0m' # reset reverse video
export LESS_TERMCAP_us=$'\E[1;32m' # begin underline
export LESS_TERMCAP_ue=$'\E[0m' # reset underline
# GPU VAAPI driver config
export LIBVA_DRIVER_NAME="radeonsi"
export PATH=$HOME/.local/bin${PATH:+:${PATH}}
export PATH=~/.npm/bin:$PATH
# No accessibility
export NO_AT_BRIDGE=1
export JAVA_HOME=/usr/lib/jvm/default
# Display percentage on man document
export MANPAGER='less -s -M +Gg'