aboutsummaryrefslogtreecommitdiffstats
path: root/zsh/.zprofile
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/.zprofile')
-rw-r--r--zsh/.zprofile7
1 files changed, 6 insertions, 1 deletions
diff --git a/zsh/.zprofile b/zsh/.zprofile
index c8d73c3..d224f58 100644
--- a/zsh/.zprofile
+++ b/zsh/.zprofile
@@ -33,4 +33,9 @@ export GTK_IM_MODULE=xim
export SUDO_PROMPT=$'\e[31mSUDO\e[m password for \e[34m%p\e[m: '
-[[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && exec startx "$HOME/.config/X11/xinitrc"
+# LS_COLORS is now required for `ls` to use colour
+eval "$(dircolors -b ~/.config/dircolors)"
+
+if [[ -z $DISPLAY && $XDG_VTNR -eq 1 ]]; then
+ exec startx "$HOME/.config/X11/xinitrc"
+fi