summaryrefslogtreecommitdiffstats
path: root/.zshrc
blob: 5bb0a87e9bc45cab4ea41a053b05ca01a5390f3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# The following lines were added by compinstall
zstyle :compinstall filename '/home/eddy/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall

# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
unsetopt autocd beep
bindkey -e
# End of lines configured by zsh-newuser-install

# Aliases from .zsh-aliases for convenience
source ~/.zsh_aliases

# Make sure ssh-agent is running and accessible
source ~/.zsh/ssh-agent-setup.sh

# Stupid keys don't work by default
#bindkey "^[[2~" # Insert
bindkey "^[[3~" delete-char 	  # Delete
bindkey "^[[H"  beginning-of-line # Home
bindkey "^[[5~" up-history	  # Page up
bindkey "^[[6~" down-history  	  # Page down
bindkey "^[[F"  end-of-line	  # End

# Git prompt function
setopt prompt_subst
source ~/.zsh/git-prompt.sh

# Custom prompt, should look like this:
# user@hostname ~/working/directory git_branch_if_any $ 
NEWLINE=$'\n'
export PROMPT="%B%F{green}[%*]%f%b %n@%m %4~%B%F{green}\$(__git_ps1 "%s")%f%b${NEWLINE}%B%(!.#.$)%b "

# Coloured man pages
man() {
    env LESS_TERMCAP_mb=$'\E[01;31m' \
    LESS_TERMCAP_md=$'\E[01;38;5;74m' \
    LESS_TERMCAP_me=$'\E[0m' \
    LESS_TERMCAP_se=$'\E[0m' \
    LESS_TERMCAP_so=$'\E[38;5;246m' \
    LESS_TERMCAP_ue=$'\E[0m' \
    LESS_TERMCAP_us=$'\E[04;38;5;146m' \
    man "$@"
}