summaryrefslogtreecommitdiff
path: root/dot_zshrc
blob: 9868448286c7afea070d34ba0e7a1f21c82b6717 (plain) (blame)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# The following lines were added by compinstall

zstyle ':completion:*' completer _complete _ignored _approximate
zstyle ':completion:*' matcher-list '' 'm:{[:lower:]}={[:upper:]}' 'r:|[._-]=* r:|=*' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} l:|=* r:|=*'
zstyle ':completion:*' max-errors 1
zstyle :compinstall filename '/home/katchup/.zshrc'

autoload -Uz compinit
compinit
# End of lines added by compinstall
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
bindkey -v
# End of lines configured by zsh-newuser-install

## VCS INFO

autoload -Uz vcs_info

zstyle ':vcs_info:*' stagedstr '%F{28}%B*%b'
zstyle ':vcs_info:*' unstagedstr '%F{11}%B*%b'
zstyle ':vcs_info:*' check-for-changes true
zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b%F{1}:%F{11}%r'
zstyle ':vcs_info:*' enable git svn
function precmd () {
    if [[ -z $(git ls-files --other --exclude-standard 2> /dev/null) ]] {
        zstyle ':vcs_info:*' formats ' %F{blue}[%F{green}%b%c%u%F{blue}]'
    } else {
        zstyle ':vcs_info:*' formats ' %F{blue}[%F{green}%b%c%u%F{red}%B*%b%F{blue}]'
    }

    vcs_info
}


# PROMPT

autoload -U promptinit
promptinit
setopt prompt_subst

PROMPT="
%B[%?] %F{red}%~%b \${vcs_info_msg_0_}
 %F{white}%(#.#.$) "
RPROMPT="%F{cyan}%n@%m%F{white}"

source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh


# ENV

alias ls='ls --color=auto'

export EDITOR=vim
export GOPATH=$HOME/go

export PATH=$PATH:$HOME/usr/bin
export LD_LIBRARY_PATH=$HOME/usr/lib

export WINEARCH=win32

alias clipper='ssh auvolat@sas.eleves.ens.fr'
alias cargo='ssh auvolat@cargo.ens.fr'
alias tremble='ssh auvolat@tremble.ens.fr'
alias tulipier='ssh auvolat@tulipier.ens.fr'
# conseil : utiliser tulipier pour bosser, sas.eleves pour IRC


# TADA
expand -t 4 $HOME/TODO