Compare commits
No commits in common. "99533ff670fe383c0c0e95580567734b3dbb2f07" and "a6973ace15c009ac112b444454c68be6b4a0348d" have entirely different histories.
99533ff670
...
a6973ace15
@ -1,8 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
VERSION=$1
|
|
||||||
shift 1
|
|
||||||
|
|
||||||
COMMAND=$1;
|
COMMAND=$1;
|
||||||
shift 1
|
shift 1
|
||||||
|
|
||||||
@ -15,4 +12,4 @@ if [ ! -f "${COMMAND}" ]; then
|
|||||||
exit 1;
|
exit 1;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
PHP_IDE_CONFIG="serverName=local" XDEBUG_CONFIG="remote_enable=1 remote_mode=req remote_port=9000 remote_host=127.0.0.1 remote_connect_back=0" php$VERSION -d zend_extension=xdebug.so $COMMAND "$@"
|
PHP_IDE_CONFIG="serverName=local" XDEBUG_CONFIG="remote_enable=1 remote_mode=req remote_port=9000 remote_host=127.0.0.1 remote_connect_back=0" php -d zend_extension=xdebug.so $COMMAND "$@"
|
||||||
|
@ -15,10 +15,14 @@ alias t="tmux"
|
|||||||
alias x+="chmod +x"
|
alias x+="chmod +x"
|
||||||
alias +x="chmod +x"
|
alias +x="chmod +x"
|
||||||
|
|
||||||
|
# Devstack
|
||||||
|
alias comup='pushd ~/src/comandi/dashboard; vagrant up; popd'
|
||||||
|
alias comdown='pushd ~/src/comandi/dashboard; vagrant halt; popd'
|
||||||
|
|
||||||
|
|
||||||
if [ `uname` == 'Linux' ]; then
|
if [ `uname` == 'Linux' ]; then
|
||||||
alias open='xdg-open'
|
alias open='xdg-open'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Remove all local branches already merged in master.
|
# Remove all local branches already merged in master.
|
||||||
alias gitclean='git branch --merged master | grep -v "\smaster$" | grep -v "*" | xargs --no-run-if-empty git branch -d'
|
alias gitclean='git branch --merged master | grep -v "\smaster$" | grep -v "*" | xargs --no-run-if-empty git branch -d'
|
||||||
alias gist='gist -c'
|
alias gist='gist -c'
|
||||||
|
@ -24,6 +24,9 @@ if command -v apt >/dev/null 2>&1; then
|
|||||||
|
|
||||||
# Add repositories
|
# Add repositories
|
||||||
|
|
||||||
|
## Hipchat
|
||||||
|
sudo sh -c 'echo "deb https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client $(lsb_release -c -s) main" > /etc/apt/sources.list.d/atlassian-hipchat4.list'
|
||||||
|
|
||||||
## Ondrej PHP PPA
|
## Ondrej PHP PPA
|
||||||
sudo add-apt-repository -y ppa:ondrej/php
|
sudo add-apt-repository -y ppa:ondrej/php
|
||||||
|
|
||||||
@ -40,13 +43,16 @@ if command -v apt >/dev/null 2>&1; then
|
|||||||
# Install apt packages
|
# Install apt packages
|
||||||
sudo apt install -y \
|
sudo apt install -y \
|
||||||
chromium-browser \
|
chromium-browser \
|
||||||
dkms virtualbox-6.0 \
|
dkms virtualbox-5.1 \
|
||||||
dnsmasq \
|
dnsmasq \
|
||||||
docker-ce \
|
docker-ce \
|
||||||
git \
|
git \
|
||||||
|
hipchat \
|
||||||
htop \
|
htop \
|
||||||
jq \
|
jq \
|
||||||
|
linux-image-extra-$(uname -r) linux-image-extra-virtual \
|
||||||
mysql-workbench \
|
mysql-workbench \
|
||||||
|
openjdk-9-jdk openjdk-8-jdk \
|
||||||
scdaemon pcscd libccid \
|
scdaemon pcscd libccid \
|
||||||
transmission \
|
transmission \
|
||||||
vim \
|
vim \
|
||||||
@ -54,14 +60,14 @@ if command -v apt >/dev/null 2>&1; then
|
|||||||
|
|
||||||
## Docker Compose
|
## Docker Compose
|
||||||
if [ ! -f /usr/local/bin/docker-compose ]; then
|
if [ ! -f /usr/local/bin/docker-compose ]; then
|
||||||
DOCKER_COMPOSE_VERSION=1.23.2
|
DOCKER_COMPOSE_VERSION=1.16.1
|
||||||
sudo curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose && sudo chmod +x /usr/local/bin/docker-compose
|
sudo curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose && sudo chmod +x /usr/local/bin/docker-compose
|
||||||
sudo curl -L https://raw.githubusercontent.com/docker/compose/${DOCKER_COMPOSE_VERSION}/contrib/completion/bash/docker-compose -o /etc/bash_completion.d/docker-compose
|
sudo curl -L https://raw.githubusercontent.com/docker/compose/${DOCKER_COMPOSE_VERSION}/contrib/completion/bash/docker-compose -o /etc/bash_completion.d/docker-compose
|
||||||
fi
|
fi
|
||||||
|
|
||||||
## Vagrant
|
## Vagrant
|
||||||
if [ ! -f /usr/bin/vagrant ]; then
|
if [ ! -f /usr/bin/vagrant ]; then
|
||||||
sudo curl -L https://releases.hashicorp.com/vagrant/2.2.4/vagrant_2.2.4_x86_64.deb -o vagrant.deb && sudo dpkg -i vagrant.deb && rm -rf vagrant.deb
|
sudo curl -L https://releases.hashicorp.com/vagrant/2.0.0/vagrant_2.0.0_x86_64.deb -o vagrant.deb && sudo dpkg -i vagrant.deb && rm -rf vagrant.deb
|
||||||
fi
|
fi
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
@ -27,8 +27,8 @@ for option in autocd globstar; do
|
|||||||
done
|
done
|
||||||
|
|
||||||
# Locale
|
# Locale
|
||||||
export LC_ALL=en_GB.UTF-8
|
export LC_ALL=en_US.UTF-8
|
||||||
export LANG="en_GB"
|
export LANG="en_US"
|
||||||
|
|
||||||
# Set the composer home.
|
# Set the composer home.
|
||||||
export COMPOSER_HOME="$HOME/.composer"
|
export COMPOSER_HOME="$HOME/.composer"
|
||||||
@ -41,7 +41,7 @@ function _prepend_path() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Construct $PATH
|
# Construct $PATH
|
||||||
PATH="/snap/bin:/usr/bin:/bin:/usr/sbin:/sbin"
|
PATH="/usr/bin:/bin:/usr/sbin:/sbin"
|
||||||
[ -d /usr/local/sbin ] && _prepend_path "/usr/local/sbin"
|
[ -d /usr/local/sbin ] && _prepend_path "/usr/local/sbin"
|
||||||
[ -d /usr/local/bin ] && _prepend_path "/usr/local/bin"
|
[ -d /usr/local/bin ] && _prepend_path "/usr/local/bin"
|
||||||
[ -f /usr/bin/npm ] && _prepend_path "./node_modules/.bin" # Node.js
|
[ -f /usr/bin/npm ] && _prepend_path "./node_modules/.bin" # Node.js
|
||||||
@ -124,7 +124,3 @@ export PAGER='less'
|
|||||||
true
|
true
|
||||||
|
|
||||||
export PATH="$HOME/.cargo/bin:$PATH"
|
export PATH="$HOME/.cargo/bin:$PATH"
|
||||||
|
|
||||||
# Disable microsoft telemetry
|
|
||||||
export DOTNET_CLI_TELEMETRY_OPTOUT=1
|
|
||||||
export BASH_PROFILE_LOADED=1
|
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
# https://github.com/janmoesen/tilde/blob/master/.bashrc
|
# https://github.com/janmoesen/tilde/blob/master/.bashrc
|
||||||
|
|
||||||
[ -n "$BASH_PROFILE_LOADED" ] && source ~/.bash_profile;
|
[ -n "$PS1" ] && source ~/.bash_profile;
|
||||||
|
|
||||||
[ -n "$PS1" ] && source ~/.bash_profile;
|
|
@ -15,8 +15,7 @@
|
|||||||
editor = vim -f
|
editor = vim -f
|
||||||
# http://stackoverflow.com/questions/136178/git-diff-handling-long-lines
|
# http://stackoverflow.com/questions/136178/git-diff-handling-long-lines
|
||||||
# If doesn't work, try: pager = less -+$LESS -FRX
|
# If doesn't work, try: pager = less -+$LESS -FRX
|
||||||
pager = less -RFX
|
pager = diff-highlight | less -RFX
|
||||||
# pager = diff-highlight | less -RFX
|
|
||||||
# pager = less -r
|
# pager = less -r
|
||||||
autocrlf = false
|
autocrlf = false
|
||||||
safecrlf = false
|
safecrlf = false
|
||||||
@ -100,9 +99,3 @@
|
|||||||
templatedir = ~/dotfiles/resources/git-template
|
templatedir = ~/dotfiles/resources/git-template
|
||||||
[pull]
|
[pull]
|
||||||
ff = yes
|
ff = yes
|
||||||
#[commit]
|
|
||||||
# gpgSign = true
|
|
||||||
[tag]
|
|
||||||
forceSignAnnotated = true
|
|
||||||
[user]
|
|
||||||
signingkey = 6652F0F4418231A7
|
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
# Python stuff
|
# Python stuff
|
||||||
*.pyc
|
*.pyc
|
||||||
VENV
|
VENV
|
||||||
@ -24,4 +23,3 @@ bower_components
|
|||||||
# IDEs stuff
|
# IDEs stuff
|
||||||
.idea
|
.idea
|
||||||
atlassian-ide-plugin.xml
|
atlassian-ide-plugin.xml
|
||||||
.vscode
|
|
||||||
|
Loading…
Reference in New Issue
Block a user