diff options
author | self <self@sateoki.xyz> | 2022-02-13 17:52:19 +0000 |
---|---|---|
committer | self <self@sateoki.xyz> | 2022-02-13 17:52:19 +0000 |
commit | c4bd69ba3436e974c1a2061f1a2e6c9eaf0752c4 (patch) | |
tree | c2797ead31502087e274e6f92d983a5f63a064ac | |
parent | da26df9a1a9f901177c3afd453738573252826a4 (diff) |
Swapped /home/george from old install to $HOME
-rw-r--r-- | zsh/.zshrc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -14,17 +14,17 @@ export LANG=en_GB.UTF-8 setopt autocd unsetopt beep bindkey -v -zstyle :compinstall filename '/home/george/.zshrc' +zstyle :compinstall filename "$HOME/.zshrc" # Path -export PATH="$PATH:/home/george/.local/bin" +export PATH="$PATH:$HOME/.local/bin" # Configuring applications to use nvidia GPU alias pmpv="prime-run mpv" # Other general user config -export USRCONFDIR=/home/george/.usrconf # Set user configuration directory ## TODO: is this needed anymore? +export USRCONFDIR=$HOME/.usrconf # Set user configuration directory ## TODO: is this needed anymore? autoload -U colors && colors autoload -U promptinit && promptinit |