dotfiles/zshrc

34 lines
686 B
Bash

### ZSH Config
## Path to your oh-my-zsh installation.
export ZSH=/home/paul/.oh-my-zsh
## See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="steeef"
## Plugins
plugins=(git vi-mode history-substring-search)
source $ZSH/oh-my-zsh.sh
### User configuration
source ~/.aliases
## GPG Auth method
export GPG_TTY=$(tty)
## Vim stuff
# Reduce delay swithing between normal & insert mode
export KEYTIMEOUT=1
# Use vim cli mode
bindkey '^K' history-beginning-search-backward
bindkey '^J' history-beginning-search-forward
# ctrl-w removed word backwards
bindkey '^w' backward-kill-word
## Dircolors
eval `dircolors ~/.config/dircolors-solarized/dircolors.256dark`