summaryrefslogtreecommitdiff
path: root/zsh/zprofile
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/zprofile')
-rw-r--r--zsh/zprofile25
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