Skip to content

Instantly share code, notes, and snippets.

View cvetan's full-sized avatar

Cvetan Šimšić cvetan

View GitHub Profile
@kevinSuttle
kevinSuttle / meta-tags.md
Last active July 3, 2024 14:23 — forked from lancejpollard/meta-tags.md
List of Usable HTML Meta and Link Tags
@Edofre
Edofre / VagrantFile
Created February 15, 2018 15:35
ZSH in Laravel Homestead with local .zshrc file
############################################################
# Install git and zsh prerequisites
config.vm.provision :shell, inline: "apt-get -y install git"
config.vm.provision :shell, inline: "apt-get -y install zsh"
# # Clone Oh My Zsh from the git repo
config.vm.provision :shell, privileged: false,
inline: "git -C ~/.oh-my-zsh pull || git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh"
# inline: "git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh"
# # Copy in the default .zshrc config file
config.vm.provision :shell, privileged: false,