Browse code

README

Nicolas Viennot authored on 04/05/2011 at 10:55:25
Showing 2 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,13 @@
0
+Introduction
1
+=============
2
+
3
+It comes from the oh-my-zsh config :)
4
+
5
+
6
+Installation
7
+=============
8
+
9
+    cd ~
10
+    git clone git://github.com/nviennot/zsh-config.git .oh-my-zsh
11
+    ln -s .oh-my-zsh/zshrc .zshrc
12
+    chsh -s `which zsh`
0 13
deleted file mode 100644
... ...
@@ -1,71 +0,0 @@
1
-A handful of functions, auto-complete helpers, and stuff that makes you shout...
2
-
3
-bq. "OH MY ZSHELL!"
4
-
5
-h2. Setup
6
-
7
-@oh-my-zsh@ should work with any recent release of "zsh":http://www.zsh.org/, the minimum recommended version is 4.3.9.
8
-
9
-h3. The automatic installer... (do you trust me?)
10
-
11
-@wget --no-check-certificate https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh@
12
-
13
-h3. The manual way
14
-
15
-
16
-1. Clone the repository
17
-
18
-  @git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh@
19
-
20
-2. Create a new zsh config by copying the zsh template we've provided.
21
-
22
-  *NOTE*: If you already have a ~/.zshrc file, you should back it up. @cp ~/.zshrc ~/.zshrc.orig@ in case you want to go back to your original settings.
23
-
24
-  @cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc@
25
-
26
-3. Set zsh as your default shell:
27
-
28
-  @chsh -s /bin/zsh@
29
-
30
-4. Start / restart zsh (open a new terminal is easy enough...)
31
-
32
-h3. Problems?
33
-
34
-You _might_ need to modify your PATH in ~/.zshrc if you're not able to find some commands after switching to _Oh My Zsh_.
35
-
36
-h2. Usage
37
-
38
-* enable the plugins you want in your @~/.zshrc@ (take a look at @plugins/@ to see what's possible)
39
-** example: @plugins=(git osx ruby)@
40
-* Theme support: Change the @ZSH_THEME@ environment variable in @~/.zshrc@.
41
-** Take a look at the "current themes":https://wiki.github.com/robbyrussell/oh-my-zsh/themes that come bundled with _Oh My Zsh_.
42
-* much much more...  take a look at @lib/@ what _Oh My Zsh_ offers...
43
-
44
-h2. Useful
45
-
46
-the "refcard":http://www.bash2zsh.com/zsh_refcard/refcard.pdf is pretty tasty for tips.
47
-
48
-h3. Customization
49
-
50
-If you want to override any of the default behavior, just add a new file (ending in @.zsh@) into the @custom/@ directory.
51
-If you have many functions which go good together you can put them as a *.plugin.zsh file in the @plugin/@ directory and then enable this plugin.
52
-
53
-h3. Uninstalling
54
-
55
-If you want to uninstall it, just run @uninstall_oh_my_zsh@ from the command line and it'll remove itself and revert you to bash (or your previous zsh config).
56
-
57
-h2. Help out!
58
-
59
-I'm far from being a zsh-expert and suspect there are many ways to improve. If you have ideas on how to make the configuration easier to maintain (and faster), don't hesitate to fork and send pull requests!
60
-
61
-h3. Send us your theme!
62
-
63
-I'm hoping to collect a bunch of themes for our command prompts. You can see existing ones in the @themes/@ directory.
64
-
65
-h2. Contributors
66
-
67
-This project wouldn't exist without all of our awesome users and contributors.
68
-
69
-* "View our growing list of contributors":https://github.com/robbyrussell/oh-my-zsh/contributors
70
-
71
-Thank you so much!
72 1
\ No newline at end of file