Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
7c279856
Commit
7c279856
authored
Jun 10, 2010
by
Robby Russell
Browse files
Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
parents
7f350da5
b26ff059
Changes
6
Hide whitespace changes
Inline
Side-by-side
README.textile
View file @
7c279856
...
...
@@ -4,6 +4,8 @@ bq. "OH MY ZSHELL!"
h2. Setup
@oh-my-zsh@ should work with any recent release of "zsh":http://www.zsh.org/, the minimum recommended version is 4.3.9.
h3. The automatic installer... (do you trust me?)
@wget http://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh@
...
...
@@ -25,22 +27,19 @@ h3. The manual way
@chsh -s /bin/zsh@
4. Start / restart zsh (open a new terminal is easy enough..)
4. Start / restart zsh (open a new terminal is easy enough..
.
)
h3. Problems?
You _might_ need to modify your PATH in ~/.zshrc if you're not able to find some commands after switching to
oh-my-z
sh.
You _might_ need to modify your PATH in ~/.zshrc if you're not able to find some commands after switching to
_Oh My Z
sh
_
.
h2. Usage
TODO: Update this..
* Rake autocomplete: @rake (tab)@. Will generate a cache of all your rake tasks and then let you auto-complete and/or select the task to run.
* ssh autocomplete: @ssh (tab)@ or @scp (tab)@
* Git branch, it'll tell you which branch you're in when you're in a git repository directory.
* enable the plugins you want in your @~/.zshrc@ (take a look at @plugins/@ to see what's possible)
** example: @plugins=(git osx ruby)@
* Theme support: Change the @ZSH_THEME@ environment variable in @~/.zshrc@.
** Take a look at the "current themes":http://wiki.github.com/robbyrussell/oh-my-zsh/themes that come bundled with Oh My Zsh.
* much much more..
** Take a look at the "current themes":http://wiki.github.com/robbyrussell/oh-my-zsh/themes that come bundled with
_
Oh My Zsh
_
.
* much much more..
. take a look at @lib/@ what _Oh My Zsh_ offers...
h2. Useful
...
...
@@ -49,6 +48,7 @@ the "refcard":http://www.bash2zsh.com/zsh_refcard/refcard.pdf is pretty tasty fo
h3. Customization
If you want to override any of the default behavior, just add a new file (ending in @.zsh@) into the @custom/@ directory.
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.
h3. Uninstalling
...
...
@@ -66,8 +66,4 @@ I'm far from being a zsh-expert and suspect there are many ways to improve. If y
h3. Send us your theme!
I'm hoping to collect a bunch of themes for our command prompts. You can see existing ones in the @themes/@ directory.
h3. Todo from imajes:
* need to make the title bar support git folder
\ No newline at end of file
I'm hoping to collect a bunch of themes for our command prompts. You can see existing ones in the @themes/@ directory.
\ No newline at end of file
lib/aliases.zsh
View file @
7c279856
...
...
@@ -18,7 +18,7 @@ alias history='fc -l 1'
# List direcory contents
alias
lsa
=
'ls -lah'
alias
l
=
'ls -la'
alias
ll
=
'ls -
alr
'
alias
ll
=
'ls -
l
'
alias
sl
=
ls
# often screw this up
alias
afind
=
'ack-grep -il'
lib/correction.zsh
View file @
7c279856
...
...
@@ -6,3 +6,5 @@ alias mysql='nocorrect mysql'
alias mkdir
=
'nocorrect mkdir'
alias
gist
=
'nocorrect gist'
alias
heroku
=
'nocorrect heroku'
alias
ebuild
=
'nocorrect ebuild'
alias
hpodder
=
'nocorrect hpodder'
lib/history.zsh
View file @
7c279856
...
...
@@ -10,6 +10,7 @@ setopt hist_verify
setopt inc_append_history
setopt extended_history
setopt hist_expire_dups_first
setopt hist_ignore_space
setopt SHARE_HISTORY
setopt APPEND_HISTORY
plugins/mysql-macports.plugin.zsh
0 → 100644
View file @
7c279856
# commands to control local mysql-server installation
# paths are for osx installtion via macports
alias
mysqlstart
=
'sudo /opt/local/bin/mysqld_safe5'
alias
mysqlstop
=
'/opt/local/bin/mysqladmin5 -u root -p shutdown'
alias
mysqlstatus
=
'mysqladmin5 -u root -p ping'
\ No newline at end of file
themes/takashiyoshida.zsh-theme
0 → 100644
View file @
7c279856
#
# PROMPT
#
PROMPT_BRACKET_BEGIN='%{$fg_bold[white]%}['
PROMPT_HOST='%{$fg_bold[cyan]%}%m'
PROMPT_SEPARATOR='%{$reset_color%}:'
PROMPT_DIR='%{$fg_bold[yellow]%}%c'
PROMPT_BRACKET_END='%{$fg_bold[white]%}]'
PROMPT_USER='%{$fg_bold[white]%}%n'
PROMPT_SIGN='%{$reset_color%}%#'
GIT_PROMPT_INFO='$(git_prompt_info)'
# My current prompt looks like:
# [host:current_dir] (git_prompt_info)
# [username]%
PROMPT="${PROMPT_BRACKET_BEGIN}${PROMPT_HOST}${PROMPT_SEPARATOR}${PROMPT_DIR}${PROMPT_BRACKET_END}${GIT_PROMPT_INFO}
${PROMPT_BRACKET_BEGIN}${PROMPT_USER}${PROMPT_BRACKET_END}${PROMPT_SIGN} "
#
# Git repository
#
ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[magenta]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%}!"
ZSH_THEME_GIT_PROMPT_CLEAN=''
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment