TEMPLATE_LOADERS = (
('django.template.loaders.cached.Loader', (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
)),
)
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
| https://prod.liveshare.vsengsaas.visualstudio.com/join?E87F31E12B231CE994816DF351AE692C86B2 |
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
| https://prod.liveshare.vsengsaas.visualstudio.com/join?4295D7B6B11C30FC576B97E9DDFB3687E9ED | |
| https://gist.github.com/AndreasChristianson/f5b4797ec1f55f1fbc6aa3b0533ef6c6 |
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
| https://prod.liveshare.vsengsaas.visualstudio.com/join?0533C896A7153586E8B45F68144F59D100E6 |
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
| # 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 |
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
| 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 |
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
| #!/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 |
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
| .vagrant/ | |
| *.swp |
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
| https://gist.github.com/mattjmorrison/2712d13932da8b35b187/edit |
NewerOlder