-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bash_profile
26 lines (23 loc) · 943 Bytes
/
.bash_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
#
#
#
# .o88o. o8o oooo
# 888 `" `"' `888
# oo.ooooo. oooo d8b .ooooo. o888oo oooo 888 .ooooo.
# 888' `88b `888""8P d88' `88b 888 `888 888 d88' `88b
# 888 888 888 888 888 888 888 888 888ooo888
# 888 888 888 888 888 888 888 888 888 .o
# 888bod8P' d888b `Y8bod8P' o888o o888o o888o `Y8bod8P'
# 888
#---------o888o------------------------------------------------------------------
#--------------------------------------------------------------------------------
#--------------------------------------------------------------------------------
[[ -f ~/.bashrc ]] && . ~/.bashrc
export EDITOR=nvim
export PAGER=less
export XDG_CONFIG_HOME="$HOME/.config"
# Autostart X at login
if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]
then
exec startx
fi