Browse code

Added own .zshrc

Nicolas Viennot authored on 04/05/2011 at 10:48:40
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,37 @@
0
+# Path to your oh-my-zsh configuration.
1
+export ZSH=$HOME/.oh-my-zsh
2
+
3
+# Set name of the theme to load.
4
+# Look in ~/.oh-my-zsh/themes/
5
+# Optionally, if you set this to "random", it'll load a random theme each
6
+# time that oh-my-zsh is loaded.
7
+export ZSH_THEME="gentoo"
8
+
9
+# Set to this to use case-sensitive completion
10
+# export CASE_SENSITIVE="true"
11
+
12
+# Comment this out to disable weekly auto-update checks
13
+export DISABLE_AUTO_UPDATE="true"
14
+
15
+# Uncomment following line if you want to disable colors in ls
16
+# export DISABLE_LS_COLORS="true"
17
+
18
+# Uncomment following line if you want to disable autosetting terminal title.
19
+# export DISABLE_AUTO_TITLE="true"
20
+
21
+# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
22
+# Example format: plugins=(rails git textmate ruby lighthouse)
23
+plugins=(git github git-flow cap gem lol)
24
+
25
+source /etc/profile
26
+source $ZSH/oh-my-zsh.sh
27
+
28
+# Customize to your needs...
29
+LS_COLORS='no=00;32:fi=00:di=00;34:ln=01;36:pi=04;33:so=01;35:bd=33;04:cd=33;04:or=31;01:ex=00;32:*.rtf=00;33:*.txt=00;33:*.html=00;33:*.doc=00;33:*.pdf=00;33:*.ps=00;33:*.sit=00;31:*.hqx=00;31:*.bin=00;31:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.deb=00;31:*.dmg=00;36:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.ppm=00;35:*.tga=00;35:*.xbm=00;35:*.xpm=00;35:*.tif=00;35:*.mpg=00;37:*.avi=00;37:*.gl=00;37:*.dl=00;37:*.mov=00;37:*.mp3=00;35:'
30
+export LS_COLORS;
31
+zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
32
+
33
+#bindkey "\e[H" beginning-of-line
34
+#bindkey "\e[F" end-of-line
35
+bindkey "\e[1;5D" backward-word
36
+bindkey "\e[1;5C" forward-word