diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2021-08-03 19:57:00 -0500 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2021-08-03 19:57:00 -0500 |
commit | 15943e620bc8bcd8a519eefc6f5700aab5299e92 (patch) | |
tree | 6dbb83d1e9abff604a5ffcb1696e639dc3127b07 /zsh/zprofile | |
parent | 3764b268dbeaa95a8d4b2da8d4433eab75ad8478 (diff) | |
download | dotconfig-15943e620bc8bcd8a519eefc6f5700aab5299e92.tar.xz dotconfig-15943e620bc8bcd8a519eefc6f5700aab5299e92.zip |
zprofile
Diffstat (limited to 'zsh/zprofile')
-rw-r--r-- | zsh/zprofile | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/zsh/zprofile b/zsh/zprofile deleted file mode 100644 index b4bdedf..0000000 --- a/zsh/zprofile +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/zsh - -# Path -export PATH=~/Scripts/launch:$PATH -export PATH=~/Scripts/x11:$PATH -export PATH=~/Scripts/misc:$PATH - -# Default programs: -export EDITOR="vim" -export TERMINAL="st" -#export BROWSER="brave" - -# Clean up home directory -export XDG_CONFIG_HOME="$HOME/.config" -export XDG_DATA_HOME="$HOME/.local/share" -export XDG_CACHE_HOME="$HOME/.cache" -export XAUTHORITY="${XDG_CONFIG_HOME:-$HOME/.config}/x11/Xauthority" -export INPUTRC="${XDG_CONFIG_HOME:-$HOME/.config}/zsh/inputrc" -export ZDOTDIR="${XDG_CONFIG_HOME:-$HOME/.config}/zsh" # Move .zshrc -#export VIMINIT="source ${XDG_CONFIG_HOME:-$HOME/.config}/vim/vimrc" -export QT_QPA_PLATFORMTHEME="qt5ct" -export LESSHISTFILE="-" - -# Autostart x11 after login -if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then startx ~/.config/x11/xinitrc; fi |