Template Loaders
TEMPLATE_LOADERS = (
('django.template.loaders.cached.Loader', (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
)),
)
# vi: set ft=ruby : | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box" | |
config.vm.box = "ubuntu-14.04" | |
config.vm.provision "shell", | |
inline: <<-CMD | |
sudo apt-get install git vim python-virtualenv -y |
set nocompatible | |
if !1 | finish | endif | |
if has('vim_starting') | |
set nocompatible " Be iMproved | |
set runtimepath+=~/.vim/bundle/neobundle.vim/ | |
endif | |
let neobundle_readme=expand($HOME.'/.vim/bundle/neobundle.vim/README.md') | |
if !filereadable(neobundle_readme) | |
silent !curl https://raw.githubusercontent.com/Shougo/neobundle.vim/master/bin/install.sh | sh | |
endif |
#!/bin/bash | |
`tmux set-option -g display-time 2000` | |
IFS=$'\n' | |
CLIENTS=() | |
for CLIENT in $(tmux list-clients); do | |
CLIENTID="${CLIENT%:*}" | |
if [[ $CLIENT == *\(ro\) ]] | |
then |
.vagrant/ | |
*.swp |
https://gist.github.com/mattjmorrison/2712d13932da8b35b187/edit |
TEMPLATE_LOADERS = (
('django.template.loaders.cached.Loader', (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
)),
)
brew cask install seil
brew cask install karabiner
curl https://raw.github.com/toranb/osx-workstation/master/installer | bash | |
git clone https://github.com/JarrodCTaylor/imt_dotfiles.git | |
cd ~/imt_dotfiles/Mac | |
bash symlink.sh |
#!/bin/zsh | |
# vim: set foldmarker=<<,>> foldlevel=1 foldmethod=marker: | |
#=================================================================================== | |
# .__ | |
# ________ _____| |_________ ____ | |
# \___ / / ___/ | \_ __ \_/ ___\ | |
# / / \___ \| Y \ | \/\ \___ | |
# /_____ \/____ >___| /__| \___ > | |
# \/ \/ \/ \/ | |
#=================================================================================== |