summaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
Diffstat (limited to 'zsh')
-rw-r--r--zsh/zprofile.base22
1 files changed, 12 insertions, 10 deletions
diff --git a/zsh/zprofile.base b/zsh/zprofile.base
index 688f8c4..ec1b362 100644
--- a/zsh/zprofile.base
+++ b/zsh/zprofile.base
@@ -1,14 +1,5 @@
#!/usr/bin/env zsh
-# Path
-scriptspath="/home/timmy/.local/bin"
-export PATH="$scriptspath/launch:$PATH"
-export PATH="$scriptspath/x11:$PATH"
-export PATH="$scriptspath/misc:$PATH"
-#export PATH="$scriptspath/keyboard:$PATH"
-export PATH="$scriptspath/sync:$PATH"
-export PATH="$scriptspath/programs:$PATH"
-
# Default programs:
export EDITOR="nvim"
export TERMINAL="st"
@@ -33,8 +24,19 @@ export PASSWORD_STORE_DIR="$XDG_DATA_HOME/password-store"
export LESSHISTFILE="-"
+# Path
+scriptspath="/home/timmy/.local/bin"
+export PATH="$scriptspath/launch:$PATH"
+export PATH="$scriptspath/x11:$PATH"
+export PATH="$scriptspath/misc:$PATH"
+#export PATH="$scriptspath/keyboard:$PATH"
+export PATH="$scriptspath/sync:$PATH"
+export PATH="$scriptspath/programs:$PATH"
+export PATH="$CARGO_HOME:$PATH"
+
# Theming
-export QT_QPA_PLATFORMTHEME="qt5ct"
+#export QT_QPA_PLATFORMTHEME="qt5ct"
+export QT_QPA_PLATFORMTHEME="gtk2"
# Autostart X after login
if [[ -z $DISPLAY ]] && [[ "$(id -u)" != 0 ]] && ( [[ $(tty) = /dev/tty1 ]] || [[ $(tty) = /dev/ttyC0 ]] ); then startx $XDG_CONFIG_HOME/x11/xinitrc; fi