diff --git a/.profile b/.profile new file mode 100644 index 0000000..12e2969 --- /dev/null +++ b/.profile @@ -0,0 +1,24 @@ +export LANG=en_US.UTF-8 + +# Start keychain only on my personal system +if [ -z "$SSH_CLIENT" ] && [ -z "$SSH_TTY" ]; then + eval `keychain --eval id_ed25519` +fi + +# These are pretty safe to assume exist +export PATH=~/bin:$PATH +export EDITOR=vim +export VISUAL=$EDITOR + +# Figure out my pager; these don't necessarily exist +if [ -e /usr/bin/bat ]; then + export PAGER="bat --plain" +elif [ -e /usr/bin/most ]; then + export PAGER=most +fi + +# Set shell history values +# We use one history for any shell, which might bite us one day? +export HISTFILE=~/.history +export HISTSIZE=10000 +export SAVEHIST=10000 diff --git a/.zprofile b/.zprofile new file mode 120000 index 0000000..aa7da3a --- /dev/null +++ b/.zprofile @@ -0,0 +1 @@ +.profile \ No newline at end of file diff --git a/.zshrc b/.zshrc index b1282e5..661427e 100644 --- a/.zshrc +++ b/.zshrc @@ -1,12 +1,3 @@ -export LANG=en_US.UTF-8 - -# Start keychain only on my personal system -if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then - SESSION_TYPE=ssh -else - eval `keychain --eval id_ed25519` -fi - # Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. # Initialization code that may require console input (password prompts, [y/n] # confirmations, etc.) must go above this block; everything else may go below. @@ -25,44 +16,21 @@ fi # Despite being called precmd() this executes after process exits, before prompt precmd() { echo -ne "\033]0;${USER}@${HOST}\007" } -# These are pretty safe to assume exist -export PATH=~/bin:$PATH -export EDITOR=vim -export VISUAL=$EDITOR - -# QT theme via qt5ct app -export QT_QPA_PLATFORMTHEME=qt5ct - -# most does not exist on every system I touch -if [[ -a /usr/bin/most ]]; then - export PAGER="most -w" -fi - # Generic navigation keybinds bindkey "^[[H" beginning-of-line # HOME bindkey "^[[F" end-of-line # END bindkey "^[[3~" delete-char # DEL bindkey '^R' history-incremental-search-backward -# OS-specific directives -case "$OSTYPE" in - darwin*) - alias ls='ls -G' - ;; - linux*) - alias ls='exa' - ;; -esac - # Global aliases alias ct="clear && task" -alias tt="taskwarrior-tui" alias grep='grep -EIs --color=auto --exclude-dir=.git' -alias highlight='highlight --out-format=xterm256 --style=base16' -HISTFILE=~/.zsh_history -HISTSIZE=10000 -SAVEHIST=10000 +# Use exa if we have it +if [ -e /usr/bin/exa ]; then + alias ls=exa +fi + setopt appendhistory # Case-insensetive tab completion