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
41dbf794
Commit
41dbf794
authored
May 26, 2011
by
Robby Russell
Browse files
Merge pull request #118 from fwalch/gpg-agent
Added gpg-agent plugin
parents
bc00334b
b1320095
Changes
2
Hide whitespace changes
Inline
Side-by-side
plugins/gpg-agent/gpg-agent.plugin.zsh
0 → 100644
View file @
41dbf794
# Based on ssh-agent code
local
GPG_ENV
=
$HOME
/.gnupg/gpg-agent.env
function
start_agent
{
/usr/bin/env gpg-agent
--daemon
--enable-ssh-support
--write-env-file
${
GPG_ENV
}
>
/dev/null
chmod
600
${
GPG_ENV
}
.
${
GPG_ENV
}
>
/dev/null
}
# Source GPG agent settings, if applicable
if
[
-f
"
${
GPG_ENV
}
"
]
;
then
.
${
GPG_ENV
}
>
/dev/null
ps
-ef
|
grep
${
SSH_AGENT_PID
}
|
grep
gpg-agent
>
/dev/null
||
{
start_agent
;
}
else
start_agent
;
fi
export
GPG_AGENT_INFO
export
SSH_AUTH_SOCK
export
SSH_AGENT_PID
GPG_TTY
=
$(
tty
)
export
GPG_TTY
themes/fwalch.zsh-theme
0 → 100644
View file @
41dbf794
PROMPT='%{$fg_bold[green]%}%p %{$fg[cyan]%}%c%{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
ZSH_THEME_GIT_PROMPT_PREFIX=" (%{$fg[red]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
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