-
Installing postfix and sending all emails to external one
-
Make postfix use an external service (gmail) to send emails
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- [ ] ayu | |
- [ ] BracketHighlighter | |
- [ ] DocBlockr | |
- [ ] EditorConfig | |
- [ ] Emmet | |
- [ ] Emmet Css Snippets | |
- [ ] GitGutter | |
- [ ] Grunt | |
- [ ] Gulp | |
- [ ] Laravel Blade Highlighter |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SSH-KEY | |
function sshkey { | |
ssh-keygen -t rsa -b 4096 -C $1 | |
} | |
# GIT | |
alias globalgitconfig="git config --global core.excludesfile ~/.gitignore_global" | |
function addGitUser { | |
git config --global user.name "Erick Patrick" | |
git config --global user.email [email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" EVERYTHING RUNS SMOOTLY ONLY ON *VIM 8* " | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" NECESSARY PLUGINS " | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" PLUGIN MANAGER " | |
" - https://github.com/VundleVim/Vundle.vim " | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
set nocompatible |
I hereby claim:
- I am erickpatrick on github.
- I am erickpatrick (https://keybase.io/erickpatrick) on keybase.
- I have a public key ASDyM7_SKpj9fQnIwKzu5EbO0UsM0udDThmNxEWrkbJpbwo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# remove current vim | |
sudo apt-get remove --purge vim vim-runtime vim-gnome vim-tiny vim-gui-common | |
# removes current link for vim | |
sudo rm -rf /usr/local/share/vim /usr/bin/vim | |
# add ppa for newest version of ruby (currently, as of 06/06/2017, ruby v2.4) | |
sudo apt-add-repository ppa:brightbox/ruby-ng | |
sudo apt-get update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export ZSH=/home/vagrant/.oh-my-zsh | |
ZSH_THEME="powerlevel9k/powerlevel9k" | |
export UPDATE_ZSH_DAYS=13 | |
plugins=(git php composer ruby python git-flow node npm ubuntu svn sudo symfony2) | |
source $ZSH/oh-my-zsh.sh | |
export LANG=en_US.UTF-8 | |
export EDITOR='vim' | |
export SSH_KEY_PATH="~/.ssh/rsa_id" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PATH_TO_MAGENTO='/path/to/magento/installation/folder' | |
GITHUB_TOKEN='github-token-here' | |
MAGENTO_USER='your-key-here' | |
MAGENTO_PASS='your-pass-here' | |
MAGENTO_ADMIN_URL='http://your-server.com' | |
MAGENTO_ADMIN_USER='admin' | |
MAGENTO_ADMIN_PASS='admin123' | |
# ondrej best php apt-repository for php to be able to | |
# update and install PHP as needed |
OlderNewer