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
6a39f810
Commit
6a39f810
authored
Jan 26, 2011
by
Claus Witt
Browse files
Merge branch 'master' of
https://github.com/robbyrussell/oh-my-zsh
parents
4e42bdc3
01b0366f
Changes
5
Show whitespace changes
Inline
Side-by-side
lib/aliases.zsh
View file @
6a39f810
...
...
@@ -21,3 +21,5 @@ alias ll='ls -l'
alias
sl
=
ls
# often screw this up
alias
afind
=
'ack-grep -il'
alias
x
=
extract
lib/appearance.zsh
View file @
6a39f810
...
...
@@ -34,5 +34,3 @@ ZSH_THEME_GIT_PROMPT_CLEAN="" # Text to display if the branch is c
# Setup the prompt with pretty colors
setopt prompt_subst
# Load the theme
source
"
$ZSH
/themes/
$ZSH_THEME
.zsh-theme"
\ No newline at end of file
lib/functions.zsh
View file @
6a39f810
...
...
@@ -37,3 +37,39 @@ function take() {
mkdir
-p
$1
cd
$1
}
function
extract
()
{
unset
REMOVE_ARCHIVE
if
test
"
$1
"
=
"-r"
;
then
REMOVE
=
1
shift
fi
if
[[
-f
$1
]]
;
then
case
$1
in
*
.tar.bz2
)
tar
xvjf
$1
;;
*
.tar.gz
)
tar
xvzf
$1
;;
*
.tar.xz
)
tar
xvJf
$1
;;
*
.tar.lzma
)
tar
--lzma
-xvf
$1
;;
*
.bz2
)
bunzip
$1
;;
*
.rar
)
unrar
$1
;;
*
.gz
)
gunzip
$1
;;
*
.tar
)
tar
xvf
$1
;;
*
.tbz2
)
tar
xvjf
$1
;;
*
.tgz
)
tar
xvzf
$1
;;
*
.zip
)
unzip
$1
;;
*
.Z
)
uncompress
$1
;;
*
.7z
)
7z x
$1
;;
*
)
echo
"'
$1
' cannot be extracted via >extract<"
;;
esac
if
[[
$REMOVE_ARCHIVE
-eq
1
]]
;
then
echo
removing
"
$1
"
;
/bin/rm
"
$1
"
;
fi
else
echo
"'
$1
' is not a valid file"
fi
}
oh-my-zsh.sh
View file @
6a39f810
...
...
@@ -14,6 +14,9 @@ for config_file ($ZSH/custom/*.zsh) source $config_file
plugin
=
${
plugin
:
=()
}
for
plugin
(
$plugins
)
source
$ZSH
/plugins/
$plugin
/
$plugin
.plugin.zsh
# Load the theme
source
"
$ZSH
/themes/
$ZSH_THEME
.zsh-theme"
# Check for updates on initial load...
if
[
"
$DISABLE_AUTO_UPDATE
"
=
"true"
]
then
...
...
themes/theunraveler.zsh-theme
View file @
6a39f810
# Comment
ZSH_THEME_GIT_PROMPT_PREFIX=' (git:'
ZSH_THEME_GIT_PROMPT_SUFFIX=')'
PROMPT='%{$fg[magenta]%}[%c] %{$reset_color%}'
PROMPT='%{$fg[magenta]%}[%c]$(git_prompt_info) $ %{$reset_color%}'
\ No newline at end of file
RPROMPT='%{$fg[magenta]%}$(git_prompt_info)%{$reset_color%} $(git_prompt_status)%{$reset_color%}'
ZSH_THEME_GIT_PROMPT_PREFIX=""
ZSH_THEME_GIT_PROMPT_SUFFIX=""
ZSH_THEME_GIT_PROMPT_DIRTY=""
ZSH_THEME_GIT_PROMPT_CLEAN=""
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[cyan]%} ✈"
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%} ✭"
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✗"
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%} ➦"
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[magenta]%} ✂"
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[grey]%} ✱"
\ No newline at end of file
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