dotfiles/zshrc

51 lines
1.3 KiB
Bash
Raw Normal View History

source $HOME/.aliases
2017-06-19 00:49:00 -04:00
# Set TERM for proper tmux colors
2017-11-18 10:07:28 -05:00
if [[ -z $TMUX ]]; then
2017-11-18 23:26:51 -05:00
export TERM='xterm-256color'
2017-11-18 10:07:28 -05:00
else
2017-11-18 23:26:51 -05:00
export TERM='screen-256color'
2017-11-18 10:07:28 -05:00
fi
2019-08-25 11:04:01 -04:00
# Customl binaries
2017-11-18 02:41:10 -05:00
export PATH=$HOME/.local/bin:$PATH
2019-08-25 14:11:08 -04:00
export PATH=$HOME/.cargo/bin:$PATH
export GOPATH=$HOME/go
2019-08-25 14:11:08 -04:00
export PATH=$HOME/.local/share/flatpak/exports/bin:$PATH
export PATH=$HOME/.local/minecraft-launcher:$PATH
2017-11-18 02:41:10 -05:00
# ZSH
2017-11-18 02:29:25 -05:00
export ZSH=$HOME/.oh-my-zsh
2017-10-24 15:28:32 -04:00
ZSH_THEME="steeef"
2017-12-05 19:55:57 -05:00
plugins=(git history-substring-search)
2017-06-19 00:49:00 -04:00
source $ZSH/oh-my-zsh.sh
## Keybindings
2017-11-15 22:38:50 -05:00
bindkey '^K' history-beginning-search-backward
bindkey '^J' history-beginning-search-forward
2017-11-15 21:53:39 -05:00
bindkey '^w' backward-kill-word
2018-06-12 23:27:26 -04:00
bindkey '\e[2~' insert-last-word
if [ -f /etc/os-release ]; then
. /etc/os-release
if [ "$ID" = "rhel" ]; then
bindkey '\e[1~' beginning-of-line
bindkey '\e[4~' end-of-line
fi
fi
2017-11-18 02:10:59 -05:00
# GPG/SSH
## Void: Install pcsclite, pcsc-ccid, gnupg2-scdaemon
unset SSH_AGENT_PID
if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)"
fi
export GPG_TTY=$(tty)
gpg-connect-agent updatestartuptty /bye >/dev/null
2019-03-17 12:31:13 -04:00
# VIM
## Reduce delay swithing between normal & insert mode
export KEYTIMEOUT=1
2019-03-17 12:31:13 -04:00
# Fancy tui dircolors
eval `dircolors ~/.config/dircolors-solarized/dircolors.256dark`