diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2021-12-07 00:53:04 -0600 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2021-12-07 00:53:04 -0600 |
commit | 9599578a86346c91035314306093caaaeba928ec (patch) | |
tree | 609ea918fc5d2cbb7101fc594c41f4487e866bd9 /zsh | |
parent | 41e14071197d271ace370332dbcec9bf50239f92 (diff) | |
download | dotconfig-9599578a86346c91035314306093caaaeba928ec.tar.xz dotconfig-9599578a86346c91035314306093caaaeba928ec.zip |
fix vim title changing issue, xinitrc so you can do 'sudo [guiapp]', cargo bin in path
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/zprofile.base | 22 |
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 |