Fix config for frXXX deployment
parent
609e6a493f
commit
0a1cd19be9
@ -0,0 +1 @@
|
|||||||
|
|
@ -1,37 +0,0 @@
|
|||||||
[submodule "zsh/zsh-syntax-highlighting"]
|
|
||||||
path = zsh/zsh-syntax-highlighting
|
|
||||||
url = https://github.com/zsh-users/zsh-syntax-highlighting.git
|
|
||||||
|
|
||||||
[submodule "vim/bundle/html5.vim"]
|
|
||||||
path = vim/bundle/html5.vim
|
|
||||||
url = https://github.com/othree/html5.vim
|
|
||||||
[submodule "vim/bundle/syntastic"]
|
|
||||||
path = vim/bundle/syntastic
|
|
||||||
url = https://github.com/scrooloose/syntastic.git
|
|
||||||
[submodule "vim/bundle/vim-jquery"]
|
|
||||||
path = vim/bundle/vim-jquery
|
|
||||||
url = https://github.com/itspriddle/vim-jquery.git
|
|
||||||
[submodule "vim/bundle/nerdcommenter"]
|
|
||||||
path = vim/bundle/nerdcommenter
|
|
||||||
url = https://github.com/scrooloose/nerdcommenter.git
|
|
||||||
[submodule "vim/bundle/vim-pathogen"]
|
|
||||||
path = vim/bundle/vim-pathogen
|
|
||||||
url = https://github.com/tpope/vim-pathogen.git
|
|
||||||
[submodule "vim/bundle/vim-airline"]
|
|
||||||
path = vim/bundle/vim-airline
|
|
||||||
url = https://github.com/bling/vim-airline
|
|
||||||
[submodule "vim/bundle/tagbar"]
|
|
||||||
path = vim/bundle/tagbar
|
|
||||||
url = https://github.com/majutsushi/tagbar
|
|
||||||
[submodule "vim/bundle/htmljinja"]
|
|
||||||
path = vim/bundle/htmljinja
|
|
||||||
url = https://github.com/estin/htmljinja
|
|
||||||
[submodule "vim/bundle/Better-CSS-Syntax-for-Vim"]
|
|
||||||
path = vim/bundle/Better-CSS-Syntax-for-Vim
|
|
||||||
url = https://github.com/ChrisYip/Better-CSS-Syntax-for-Vim
|
|
||||||
[submodule "vim/bundle/nerdtree"]
|
|
||||||
path = vim/bundle/nerdtree
|
|
||||||
url = https://github.com/scrooloose/nerdtree
|
|
||||||
[submodule "vim/bundle/vim-yardoc"]
|
|
||||||
path = vim/bundle/vim-yardoc
|
|
||||||
url = https://github.com/noprompt/vim-yardoc.git
|
|
@ -0,0 +1,19 @@
|
|||||||
|
env=~/.ssh/agent.env
|
||||||
|
|
||||||
|
agent_load_env () { test -f "$env" && . "$env" >| /dev/null ; }
|
||||||
|
|
||||||
|
agent_start () {
|
||||||
|
(umask 077; ssh-agent >| "$env")
|
||||||
|
. "$env" >| /dev/null
|
||||||
|
}
|
||||||
|
|
||||||
|
agent_load_env
|
||||||
|
|
||||||
|
# agent_run_state: 0=agent running w/ key; 1=agent w/o key; 2= agent not running
|
||||||
|
agent_run_state=$(ssh-add -l >| /dev/null 2>&1; echo $?)
|
||||||
|
|
||||||
|
if [ ! "$SSH_AUTH_SOCK" ] || [ $agent_run_state = 2 ]; then
|
||||||
|
agent_start
|
||||||
|
fi
|
||||||
|
|
||||||
|
unset env
|
Loading…
Reference in New Issue