Made a few changes
This commit is contained in:
parent
232d5529b2
commit
49b7a745d1
@ -54,3 +54,4 @@ icedtea-7-plugin
|
|||||||
systemsettings
|
systemsettings
|
||||||
gtk-theme-switch
|
gtk-theme-switch
|
||||||
qtcurve
|
qtcurve
|
||||||
|
kpartsplugin
|
||||||
|
14
shells/zshrc
14
shells/zshrc
@ -24,9 +24,10 @@ antigen apply
|
|||||||
|
|
||||||
# Would you like to use another custom folder than $ZSH/custom?
|
# Would you like to use another custom folder than $ZSH/custom?
|
||||||
# ZSH_CUSTOM=/path/to/new-custom-folder
|
# ZSH_CUSTOM=/path/to/new-custom-folder
|
||||||
#plugins=(git)
|
# plugins=(wd gem gpg-agent pass pip python sudo vagrant)
|
||||||
|
plugins=(wd gem pass pip python sudo vagrant)
|
||||||
DISABLE_AUTO_UPDATE="true"
|
DISABLE_AUTO_UPDATE="true"
|
||||||
#source $ZSH/oh-my-zsh.sh
|
source $ZSH/oh-my-zsh.sh
|
||||||
if [ -f /etc/zsh_command_not_found ] ; then
|
if [ -f /etc/zsh_command_not_found ] ; then
|
||||||
source /etc/zsh_command_not_found
|
source /etc/zsh_command_not_found
|
||||||
fi
|
fi
|
||||||
@ -138,7 +139,14 @@ function cinitify(){
|
|||||||
git remote add oHttps https://10.0.1.200/gitlab/$1/$2.git
|
git remote add oHttps https://10.0.1.200/gitlab/$1/$2.git
|
||||||
git remote -v
|
git remote -v
|
||||||
git config http.sslVerify false
|
git config http.sslVerify false
|
||||||
if [[ ! $3 == "-r" ]] ; then
|
if [[ $3 == "-v" ]] ; then
|
||||||
|
# Vagrant repository
|
||||||
|
vagrant init $4
|
||||||
|
echo ".vagrant" > .gitignore
|
||||||
|
git add .
|
||||||
|
git commit -m "Initial commit"
|
||||||
|
vagrant up
|
||||||
|
elif [[ ! $3 == "-r" ]] ; then
|
||||||
echo -n "Pull from: "
|
echo -n "Pull from: "
|
||||||
read from
|
read from
|
||||||
git pull $from
|
git pull $from
|
||||||
|
Loading…
Reference in New Issue
Block a user